记录编号 |
270125 |
评测结果 |
AAAAAAAAAA |
题目名称 |
找最佳通路 |
最终得分 |
100 |
用户昵称 |
AntiLeaf |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.004 s |
提交时间 |
2016-06-14 14:32:34 |
内存使用 |
0.00 MiB |
显示代码纯文本
#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;
const int maxn=60;
int n,m,s,t,x,y;
int dis[maxn][maxn];
int MAIN(){
#define MINE
#ifdef MINE
freopen("city.in","r",stdin);
freopen("city.out","w",stdout);
#endif
scanf("%d%d%d%d",&n,&m,&s,&t);
memset(dis,63,sizeof(dis));
for(int i=0;i<m;i++){
scanf("%d%d",&x,&y);
dis[x][y]=1;
}
for(int k=1;k<=n;k++)for(int i=1;i<=n;i++)for(int j=1;j<=n;j++)
dis[i][j]=min(dis[i][j],dis[i][k]+dis[k][j]);
printf("%d",dis[s][t]+1);
return 0;
}
int haha=MAIN();
int main(){;}