Advertisement
Guest User

Untitled

a guest
Aug 6th, 2017
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.19 KB | None | 0 0
  1. #include <vector>
  2. #include <algorithm>
  3. #include <limits>
  4. #include <queue>
  5.  
  6. using namespace std;
  7.  
  8. const int oo = numeric_limits<int>::max();
  9.  
  10. struct step {
  11.     int curr, dist;
  12.  
  13.     step() {}
  14.     step(int c, int d):curr(c), dist(d){}
  15.  
  16.     bool operator<(const step& s)
  17.         const {
  18.         return dist>s.dist;
  19.     }
  20. };
  21.  
  22. typedef pair<int, int> ii;
  23. typedef pair<int, ii> iii;
  24. vector<vector<iii>> graph;
  25.  
  26. vector<int> dist;
  27.  
  28. int raggiungi(int N, int M, int A[], int B[], int in[], int fine[]) {
  29.     graph.resize(N);
  30.     for (int i = 0; i < M; i++) {
  31.         ii temp = ii(in[i], fine[i]);
  32.         graph[A[i]].push_back({ B[i], temp });
  33.         graph[B[i]].push_back({ A[i], temp });
  34.     }
  35.     dist.assign(N, oo);
  36.     dist[0] = 0;
  37.     priority_queue<step> Q;
  38.     Q.push({ 0, 0 });
  39.     while (!Q.empty()) {
  40.         step head = Q.top(); Q.pop();
  41.         if (dist[head.curr] == oo) {
  42.             dist[head.curr] = head.dist;
  43.  
  44.             if (head.curr == N - 1)
  45.                 return dist[head.curr];
  46.            
  47.             for (auto i : graph[head.curr])
  48.                 if (i.second.second > head.dist)
  49.                     if (max(i.second.first, dist[head.curr] + 1) < dist[i.first])
  50.                         Q.push(step(i.first, max(i.second.first, dist[head.curr] + 1)));       
  51.         }
  52.     }
  53.  
  54.     return (dist[N - 1] == oo) ? -1 : dist[N - 1];
  55. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement