This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
//#pragma GCC optomize ("Ofast")
//#pragma GCC optomize ("unroll-loops")
//#pragma GCC target ("avx,avx2,fma")
#include <bits/stdc++.h>
#define F first
#define S second
#define pb push_back
#define sz size
#define cl clear
#define ins insert
#define ers erase
#define pii pair < int , int >
#define pll pair< long long , long long >
#define all(x) x.begin() , x.end()
#define ios ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0);
#define file(s) if (fopen(s".in", "r")) freopen(s".in", "r", stdin), freopen(s".out", "w", stdout)
#define tostr(x) to_string(x)
#define tonum(s) atoi(s.c_str())
#define seon(x) setprecision(x)
#define bpop(x) __builtin_popcount(x)
#define deb(x) cerr << #x << " = " << x << endl;
typedef long long ll;
typedef unsigned long long ull;
typedef double db;
typedef long double ldb;
const double PI = 3.14159265;
const ll N = 2e5+5;
const ll mod = 1e9+7;
const ll inf = 1e9;
const ll INF = 1e18;
using namespace std;
ll n , m , q;
ll dp[N];
vector<pii> g[N];
void bfs(){
set<pii> st;
int k;
cin >> k;
for(int i = 1; i <= n; i++) dp[i] = inf;
for(int i = 1; i <= n; i++) {
int u;
cin >> u;
dp[u] = 0;
st.ins({0 , u});
}
while(st.sz()){
int v = st.begin()->S;
for(pii to : g[v]){
if(dp[to.F] > dp[v]+to.S){
st.ers({dp[to.F] , to.F});
dp[to.F] = dp[v]+to.S;
st.ins({dp[to.F] , to.F});
}
}
}
}
void solve(){
cin >> n >> m;
for(int i = 1; i <= n; i++){
int a, b , c;
cin >> a>> b >> c;
g[a].pb({b , c});
g[b].pb({a , c});
}
bfs();
cin >> q;
while(q--){
int u , v;
cin >> u >> v;
cout << min(dp[v] , dp[u]) <<"\n";
}
}
signed main(){
ios;
solve();
return 0;
}
/*
*/
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |