记录编号 123809 评测结果 AAAAAAAAAA
题目名称 [USACO Dec08] 花园栅栏 最终得分 100
用户昵称 GravatarHouJikan 是否通过 通过
代码语言 C++ 运行时间 0.023 s
提交时间 2014-09-28 22:41:00 内存使用 0.37 MiB
显示代码纯文本
  1. #include <iostream>
  2. #include <cstring>
  3. #include <cstdio>
  4. #include <cstdlib>
  5. #include <cmath>
  6. #include <algorithm>
  7. #include <queue>
  8. #include <stack>
  9. #include <map>
  10. #include <set>
  11. #include <list>
  12. #include <vector>
  13. #include <ctime>
  14. #include <iterator>
  15. #include <functional>
  16. #define pritnf printf
  17. #define scafn scanf
  18. #define For(i,j,k) for(int i=(j);i<=(k);(i)++)
  19. using namespace std;
  20. typedef long long LL;
  21. typedef unsigned int Uint;
  22. const int INF=0x7ffffff;
  23. const double eps=1e-6;
  24. //==============struct declaration==============
  25.  
  26. //==============var declaration=================
  27. const int MAXN=110;
  28. bool Wall[MAXN][MAXN][4];
  29. int x,y,dist,n,ans=0;
  30. char cmd;
  31. bool vis[MAXN][MAXN];
  32. int mvx[]={0,1,0,-1};
  33. int mvy[]={1,0,-1,0};
  34. //==============function declaration============
  35. void move();
  36. void floodfill(int x,int y);
  37. //==============main code=======================
  38. int main()
  39. {
  40. string FileName="fence";//程序名
  41. string FloderName="COGS";//文件夹名
  42. freopen((FileName+".in").c_str(),"r",stdin);
  43. freopen((FileName+".out").c_str(),"w",stdout);
  44. #ifdef DEBUG
  45. system(("cp C:\\Users\\Administrator\\Desktop\\"+FloderName+"\\standard.cpp C:\\Users\\Administrator\\Desktop\\"+FloderName+"\\submit.txt").c_str());
  46. clock_t Start_Time=clock();
  47. #endif
  48. ios::sync_with_stdio(false);
  49. cin>>x>>y>>n;
  50. For(i,1,n){
  51. cin>>cmd>>dist;
  52. move();
  53. }
  54. For(i,0,100)
  55. For(j,0,100)
  56. if (!vis[i][j])
  57. floodfill(i,j);
  58. cout<<ans<<endl;
  59. #ifdef DEBUG
  60. clock_t End_Time=clock();
  61. cout<<endl<<endl<<"Time Used: "<<double(End_Time-Start_Time)*1000/(CLOCKS_PER_SEC)<<" Ms"<<endl;
  62. #endif
  63. return 0;
  64. }
  65. //================fuction code====================
  66. void move()
  67. {
  68. if (cmd=='N'){
  69. for(int i=0;i<=dist-1&&i+y<=100;i++){
  70. if (x!=0)
  71. Wall[x-1][y+i][1]=Wall[x][y+i][3]=true;
  72. else
  73. Wall[x][y+i][3]=true;
  74. }
  75. y+=dist;
  76. }
  77. else if (cmd=='S'){
  78. for(int i=1;i<=dist&&y-i<=100;i++){
  79. if (x!=0)
  80. Wall[x-1][y-i][1]=Wall[x][y-i][3]=true;
  81. else
  82. Wall[x][y-i][3]=true;
  83. }
  84. y-=dist;
  85. }
  86. else if (cmd=='E'){
  87. for(int i=0;i<=dist-1&&x+i<=100;i++){
  88. if (y!=0)
  89. Wall[x+i][y-1][0]=Wall[x+i][y][2]=true;
  90. else
  91. Wall[x+i][y][2]=true;
  92. }
  93. x+=dist;
  94. }
  95. else if (cmd=='W'){
  96. for(int i=1;i<=dist&&x-i>=0;i++){
  97. if (y!=0)
  98. Wall[x-i][y-1][0]=Wall[x-i][y][2]=true;
  99. else
  100. Wall[x-i][y][2]=true;
  101. }
  102. x-=dist;
  103. }
  104. }
  105. void floodfill(int x,int y)
  106. {
  107. bool out=false;
  108. int cnt=0;
  109. queue <int> X;
  110. queue <int> Y;
  111. vis[x][y]=true;
  112. X.push(x);Y.push(y);
  113. while (!X.empty()){
  114. int xx=X.front(),yy=Y.front();
  115. X.pop();Y.pop();
  116. if (xx>100||yy>100||xx<0||yy<0){
  117. out=true;
  118. continue;
  119. }
  120. cnt++;
  121. For(i,0,3)
  122. if (!Wall[xx][yy][i]){
  123. int xxx=xx+mvx[i];
  124. int yyy=yy+mvy[i];
  125. if (xxx<0||yyy<0){
  126. out=true;
  127. continue;
  128. }
  129. if (!vis[xxx][yyy])
  130. X.push(xxx),Y.push(yyy);
  131. vis[xxx][yyy]=true;
  132. }
  133. }
  134. if (!out)
  135. ans+=cnt;
  136. }