Advertisement
Josif_tepe

Untitled

Jan 13th, 2022
997
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.32 KB | None | 0 0
  1. #include <iostream>
  2. #include <vector>
  3. #include <algorithm>
  4. #include <queue>
  5. using namespace std;
  6. struct node {
  7.     int idx;
  8.     int cost;
  9.    
  10.     node(){}
  11.     node(int _idx, int _cost) {
  12.         idx = _idx;
  13.         cost = _cost;
  14.     }
  15.     bool operator < (const node &tmp) const {
  16.         return cost > tmp.cost;
  17.     }
  18. };
  19. int main() {
  20.    
  21.     int n, m;
  22.     cin >> n >> m;
  23.     vector<pair<int, int> > graph[n + 1];
  24.     for(int i = 0; i < m; i++) {
  25.         int a, b, c;
  26.         cin >> a >> b >> c;
  27.         graph[a].push_back(make_pair(b, c));
  28.         graph[b].push_back(make_pair(a, c));
  29.     }
  30.    
  31.     int S, E;
  32.     cin >> S >> E;
  33.    
  34.     priority_queue<node> pq;
  35.     pq.push(node(S, 0));
  36.     vector<bool> visited(n + 1, false);
  37.    
  38.     while(!pq.empty()) {
  39.         node current_node = pq.top();
  40.         pq.pop();
  41.         visited[current_node.idx] = true;
  42.         if(current_node.idx == E) {
  43.             cout << current_node.cost << endl;
  44.             break;
  45.         }
  46.         for(int i = 0; i < graph[current_node.idx].size(); i++) {
  47.             int sosed = graph[current_node.idx][i].first;
  48.             int rebro = graph[current_node.idx][i].second;
  49.             if(!visited[sosed]) {
  50.                 pq.push(node(sosed, current_node.cost + rebro));
  51.             }
  52.         }
  53.     }
  54.     return 0;
  55. }
  56.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement