Advertisement
Josif_tepe

Untitled

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