题目描述
如图所示,有若干个城市,它们之间有道路连通,可以互相到达,从一个城市到另一个城市时间为1。现在给出起点城市A,终点城市B,和N条道路。问从A到B最短时间。
Input
第一行A,B,N(A,B,N<=30),B为最大城市标号;
接下来N行,每行两个数x,y,表示城市x和城市y有道路相连。
Output
最短到达时间
样例输入
1 7 9
1 2
1 4
2 3
3 5
4 5
4 6
1 6
6 7
5 7
样例输出
2
样例解释
可以通过1——6——7到达城市7,花费最短时间为2.
code:
#include <bits/stdc++.h>
using namespace std;
int a,b,n,d[40],vis[40];
bool city[40][40];
queue<int> q;
void bfs()
{
q.push(a);
vis[a]=1;
d[a]=0;
while(!q.empty())
{
int x=q.front();
q.pop();
vis[x]=0;
for(int i=1;i<=b;i++)
{
if(city[x][i]&&!vis[i])
{
q.push(i);
vis[i]=1;
d[i]=d[x]+1;
if(i==b)
{
cout << d[i];
exit(0);
}
}
}
}
}
int main()
{
cin >> a >> b >> n;
for(int i=1;i<=n;i++)
{
int x,y;
cin >> x >> y;
city[x][y]=1;
city[y][x]=1;
}
bfs();
return 0;
}
标签:city,短时间,int,城市,样例,40,vis,Time,Shortest
From: https://www.cnblogs.com/nasia/p/17520847.html