记录编号 239745 评测结果 AAAAAA
题目名称 [BJOI2006] 狼抓兔子 最终得分 100
用户昵称 Gravatarasddddd 是否通过 通过
代码语言 C++ 运行时间 1.072 s
提交时间 2016-03-20 15:37:23 内存使用 59.44 MiB
显示代码纯文本
  1. #include<iostream>
  2. #include<cstring>
  3. #include<cstdio>
  4. #include<cmath>
  5. #include<vector>
  6. #include<queue>
  7. #define maxn 3100000
  8. using namespace std;
  9. vector<int>G[maxn];
  10. void addedge(int from,int to){
  11. G[from].push_back(to);
  12. G[to].push_back(from);
  13. }
  14. int n,m,t;
  15. int cost[maxn],dist[maxn];
  16. void spfa(int s){
  17. bool inq[maxn];
  18. queue<int>que;
  19. memset(inq,0,sizeof(inq));
  20. memset(dist,-1,sizeof(dist));
  21. dist[s]=0;
  22. que.push(s);
  23. while(!que.empty()){
  24. int k=que.front();
  25. que.pop();
  26. inq[k]=0;
  27. for(int i=0;i<G[k].size();i++){
  28. int u=G[k][i];
  29. if(dist[u]>dist[k]+cost[u]||dist[u]==-1){
  30. dist[u]=dist[k]+cost[u];
  31. if(!inq[u]){
  32. que.push(u);
  33. inq[u]=1;
  34. }
  35. }
  36. }
  37. }
  38. }
  39. int main(){
  40. ios::sync_with_stdio(false);
  41. freopen("bjrabbit.in","r",stdin);
  42. freopen("bjrabbit.out","w",stdout);
  43. cin>>n>>m;
  44. for(int i=0;i<n;i++){
  45. for(int j=1;j<=m-1;j++){
  46. cin>>cost[i*(2*m-1)+j];
  47. }
  48. }
  49. for(int i=0;i<n-1;i++){
  50. for(int j=1;j<=m;j++){
  51. cin>>cost[m-1+i*(2*m-1)+j];
  52. }
  53. }
  54. t=n*(m-1)+(n-1)*m+1;
  55. for(int i=0;i<n-1;i++){
  56. for(int j=1;j<=m-1;j++){
  57. cin>>cost[t];
  58. addedge(t,i*(2*m-1)+j);
  59. addedge(t,m-1+i*(2*m-1)+j+1);
  60. addedge(i*(2*m-1)+j,m-1+i*(2*m-1)+j+1);
  61. addedge(t,(i+1)*(2*m-1)+j);
  62. addedge(t,m-1+i*(2*m-1)+j);
  63. addedge((i+1)*(2*m-1)+j,m-1+i*(2*m-1)+j);
  64. t++;
  65. }
  66. }
  67. for(int i=0;i<n-1;i++){
  68. addedge(0,m+i*(2*m-1));
  69. addedge(t,(i+1)*(2*m-1));
  70. }
  71. for(int i=1;i<=m-1;i++){
  72. addedge(0,(n-1)*(2*m-1)+i);
  73. addedge(i,t);
  74. }
  75. spfa(0);
  76. cout<<dist[t];
  77. }