记录编号 118081 评测结果 AAAAAAAAAAAAAAAAAAAA
题目名称 [USACO Oct08] 被破坏的电力系统 最终得分 100
用户昵称 GravatarHouJikan 是否通过 通过
代码语言 C++ 运行时间 0.230 s
提交时间 2014-09-03 21:29:48 内存使用 0.34 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. //==============struct declaration==============
  24. struct node
  25. {
  26. int to;
  27. double dist;
  28. node (int to=0,double dist=0):to(to),dist(dist){}
  29. bool operator <(const node& rhs) const
  30. {
  31. return dist>rhs.dist;
  32. }
  33. };
  34. struct points
  35. {
  36. int x,y;
  37. }point[1010];
  38. struct adj
  39. {
  40. int from,to;
  41. double dist;
  42. adj(int from=0,int to=0,double dist=0):from(from),to(to),dist(dist){}
  43. };
  44. //==============var declaration=================
  45. int n,w;
  46. double m;
  47. double dist[1010];
  48. bool vis[1010];
  49. vector <adj> Edge[1010];
  50. //==============function declaration============
  51. double dis(int i,int j);
  52. void djstra();
  53. //==============main code=======================
  54. int main()
  55. {
  56. string FileName="pwrfail";//程序名
  57. string FloderName="COGS";//文件夹名
  58. freopen((FileName+".in").c_str(),"r",stdin);
  59. freopen((FileName+".out").c_str(),"w",stdout);
  60. #ifdef DEBUG
  61. system(("cp C:\\Users\\Administrator\\Desktop\\"+FloderName+"\\standard.cpp C:\\Users\\Administrator\\Desktop\\"+FloderName+"\\submit.txt").c_str());
  62. clock_t Start_Time=clock();
  63. #endif
  64. scanf("%d%d%lf",&n,&w,&m);
  65. double d;
  66. For(i,1,n)
  67. {
  68. scanf("%d%d",&point[i].x,&point[i].y);
  69. For(j,1,i-1)
  70. {
  71. d=dis(i,j);
  72. if (d<m)
  73. {
  74. Edge[i].push_back(adj(i,j,d));
  75. Edge[j].push_back(adj(j,i,d));
  76. }
  77. }
  78. }
  79. For(i,1,w)
  80. {
  81. int s,e;
  82. scanf("%d%d",&s,&e);
  83. Edge[s].push_back(adj(s,e,0));
  84. Edge[e].push_back(adj(e,s,0));
  85. }
  86. djstra();
  87. #ifdef DEBUG
  88. clock_t End_Time=clock();
  89. cout<<endl<<endl<<"Time Used: "<<double(End_Time-Start_Time)/CLOCKS_PER_SEC<<endl;
  90. #endif
  91. return 0;
  92. }
  93. //================fuction code====================
  94. double dis(int i,int j)
  95. {
  96. LL xx=point[i].x-point[j].x;
  97. LL yy=point[i].y-point[j].y;
  98. return sqrt(double (xx*xx+yy*yy));
  99. }
  100. void djstra()
  101. {
  102. memset(vis,0,sizeof(vis));
  103. For(i,1,n)
  104. dist[i]=INF;
  105. dist[1]=0;
  106. priority_queue <node> Q;
  107. Q.push(node(1,0));
  108. while (!Q.empty())
  109. {
  110. node now=Q.top();Q.pop();
  111. if (vis[now.to]) continue;
  112. vis[now.to]=true;
  113. int siz=Edge[now.to].size()-1;
  114. For(i,0,siz)
  115. {
  116. adj &e=Edge[now.to][i];
  117. if (!vis[e.to])
  118. if (dist[e.to]>dist[now.to]+e.dist)
  119. {
  120. dist[e.to]=dist[now.to]+e.dist;
  121. Q.push(node(e.to,dist[e.to]));
  122. }
  123. }
  124. }
  125. if (vis[n])
  126. printf("%d\n",int (dist[n]*1000));
  127. else
  128. pritnf("-1\n");
  129. }