Advertisement
Josif_tepe

Untitled

Dec 16th, 2024
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.12 KB | None | 0 0
  1. #include <iostream>
  2. #include <queue>
  3. #include <vector>
  4. using namespace std;
  5. const int maxn = 1e5 + 10;
  6.  
  7. vector<int> graph[maxn];
  8. int main()
  9. {
  10.     int n;
  11.     cin >> n;
  12.    
  13.     int m;
  14.     cin >> m;
  15.    
  16.     for(int i = 0; i < m; i++) {
  17.         int a, b;
  18.         cin >> a >> b;
  19.         a--; b--;
  20.        
  21.         graph[a].push_back(b);
  22.         graph[b].push_back(a);
  23.     }
  24.     int S, E;
  25.     cin >> S >> E;
  26.     S--;
  27.     E--;
  28.    
  29.    
  30.     queue<int> q;
  31.     q.push(S);
  32.     q.push(0);
  33.    
  34.     vector<bool> visited(n, false);
  35.     while(!q.empty()) {
  36.         int c = q.front();
  37.         q.pop();
  38.         int dist = q.front();
  39.         q.pop();
  40.        
  41.        
  42.         if(c == E) {
  43.             cout << dist << endl;
  44.             return 0;
  45.         }
  46.         for(int i = 0; i < (int) graph[c].size(); i++) {
  47.             int neighbour = graph[c][i];
  48.             if(!visited[neighbour]) {
  49.                 q.push(neighbour);
  50.                 q.push(dist + 1);
  51.                 visited[neighbour] = true;
  52.             }
  53.            
  54.         }
  55.        
  56.     }
  57.     cout << 0 << endl;
  58.  
  59.    
  60.     return 0;
  61.  
  62. }
  63.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement