记录编号 550656 评测结果 AAAAAAAAAA
题目名称 [USACO Dec07] 泥潭 最终得分 100
用户昵称 GravatarU.N.A 是否通过 通过
代码语言 C++ 运行时间 0.072 s
提交时间 2020-03-13 20:22:48 内存使用 34.84 MiB
显示代码纯文本
  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. #define s freopen("mud.in","r",stdin)
  4. #define ss freopen("mud.out","w",stdout)
  5. #define sss fclose(stdin)
  6. #define ssss fclose(stdout)
  7. #define mint int// long
  8. #define pd if(nx<=maxx && ny<=maxx && nx>=0 && ny>=0 && !mp[nx][ny])
  9. mint mp[1010][1010];
  10. mint rock,ax,ay;
  11. mint maxx=1010;
  12. mint hd,tl;
  13. mint dx[]={0,0,0,1,-1};
  14. mint dy[]={0,1,-1,0,0};
  15. struct u{
  16. mint x,y;
  17. mint step;
  18. }que[1511000];
  19. void bfs(){
  20. que[hd]=(u){500,500,0};
  21. mp[que[hd].x][que[hd].y]=true;
  22. while(hd<=tl){
  23. u tic=que[hd];
  24. if(tic.x==ax && tic.y==ay){
  25. cout<<tic.step;
  26. return;
  27. }
  28. for(mint i=1;i<=4;i++){
  29. tic=que[hd];
  30. mint nx=tic.x+dx[i];
  31. mint ny=tic.y+dy[i];
  32. pd{
  33. mp[nx][ny]=true;
  34. tic.x=nx;
  35. tic.y=ny;
  36. tic.step++;
  37. // cout<<que[hd].x<<" "<<que[hd].y<<" "<<tic.x<<" "<<tic.y<<" "<<tic.step<<endl;
  38. tl++;
  39. que[tl]=tic;
  40. if(tic.x==ax && tic.y==ay){
  41. cout<<tic.step;
  42. return;
  43. }
  44. }
  45. }
  46. hd++;
  47. }
  48. cout<<-1;
  49. return;
  50. }
  51. int main(){
  52. s;
  53. ss;
  54. cin>>ax>>ay>>rock;
  55. ax+=500;
  56. ay+=500;
  57. for(mint i=1;i<=rock;i++){
  58. mint pp,p;
  59. cin>>p>>pp;
  60. p+=500;
  61. pp+=500;
  62. mp[p][pp]=true;
  63. }
  64. //cout<<ax<<" "<<ay<<endl;
  65. bfs();
  66. sss;
  67. ssss;
  68. return 0;
  69. }