-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathShortest_Path.cpp
83 lines (56 loc) · 980 Bytes
/
Shortest_Path.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
#include<bits/stdc++.h>
using namespace std;
void io()
{
#ifndef ONLINE_JUDGE
freopen("input.txt", "r", stdin);
freopen("output.txt", "w", stdout);
#endif
}
int bfs(vector<int> *graph,int src,int n,int ans){
vector<int> dist(n+1,INT_MAX);
queue<int> q;
q.push(src);
dist[src]=0;
while (!q.empty()){
int node=q.front();
q.pop();
for(auto nbr:graph[node]){
if(dist[nbr]==INT_MAX){
// neighbour node
dist[nbr]=dist[node]+1;
q.push(nbr);
}
else if(dist[nbr]>=dist[node]);
// backedge case
ans=min(ans,dist[nbr]+dist[node]+1);
}
}
return ans;
}
void solve()
{
int n,m;
cin>>n>>m;
vector<int> graph[n+1];
while(m--){
int a,b;
cin>>a>>b;
graph[a].push_back(b);
graph[b].push_back(a);
}
int ans=n+1;
for(int i=1;i<=n;i++){
ans=bfs(graph,i,n,ans);
}
if(ans==n+1)
cout<<"No cycle detected\n";
else
cout<<"The shortest path is "<<ans<<endl;
}
int32_t main()
{
io();
solve();
return 0;
}