记录编号 |
390090 |
评测结果 |
AAAAAAAAAA |
题目名称 |
找最佳通路 |
最终得分 |
100 |
用户昵称 |
Tbnlkegc |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.003 s |
提交时间 |
2017-04-01 20:02:02 |
内存使用 |
0.33 MiB |
显示代码纯文本
#include<iostream>
#include<algorithm>
#include<cstdio>
using namespace std;
int map[51][51];
int main()
{
freopen("city.in","r",stdin);
freopen("city.out","w",stdout);
int n,m,s,e,a,b;
cin>>n>>m>>s>>e;
for(int i=1;i<=50;i++)
for(int j=1;j<=50;j++)
map[i][j]=9999999;
for(int i=1;i<=m;i++)
{
cin>>a>>b;
map[a][b]=1;
}
for(int k=1;k<=n;k++)
{
for(int i=1;i<=n;i++)
{
for(int j=1;j<=n;j++)
{
if(map[i][j]>map[i][k]+map[k][j])
map[i][j]=map[i][k]+map[k][j];
}
}
}
cout<<map[s][e]+1;
return 0;
}