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
|
#include <bits/stdc++.h> using namespace std;
#define EmiliaMyWife ios::sync_with_stdio(0); cin.tie(NULL); #define mem(i,j) memset(i,j,sizeof (i)); using ll = int64_t; using ull = uint64_t; using ld = long double; using uint = uint32_t; const double EPS = 1e-8; const int INF = 0x3F3F3F3F; const ll LINF = 4611686018427387903; const int MOD = 1e9+7;
signed main() { EmiliaMyWife
int t; cin >> t; while(t--) { int s, t, n, m; cin >> n >> m >> s >> t; vector<ll> dis(n, LINF), dis2(n, LINF); vector<vector<pair<int, int>>> edge(n); for(int i = 0, a, b, c; i < m; i++) cin >> a >> b >> c, edge[a].push_back({b, c}); dis[s] = 0; priority_queue<pair<ll, int>, vector<pair<ll, int>>, greater<pair<ll, int>>> pq; pq.push({0, s}); while(!pq.empty()) { auto [d, v] = pq.top(); pq.pop(); if(dis2[v] < d) continue; for(auto [u, c] : edge[v]) { ll xx = d + c; if(xx < dis[u]) { swap(dis[u], xx); pq.push({dis[u], u}); } if(xx < dis2[u] && xx != dis[u]) { dis2[u] = xx; pq.push({dis2[u], u}); } } } cout << dis2[t] - dis[t] << '\n'; }
return 0; }
|