제출 #565800

#제출 시각아이디문제언어결과실행 시간메모리
565800RealSnakeEvacuation plan (IZhO18_plan)C++14
23 / 100
1314 ms22444 KiB
#include "bits/stdc++.h" using namespace std; #include <ext/pb_ds/assoc_container.hpp> #include <ext/pb_ds/tree_policy.hpp> using namespace __gnu_pbds; typedef tree<int, null_type, less<int>, rb_tree_tag, tree_order_statistics_node_update> ordered_set; #define ll long long #define mod 1000000007 ofstream fout(".out"); ifstream fin(".in"); vector<pair<int, int>> v[100001]; int d[100001], g[100001], ans[16][16]; bool vis[100001]; int n, m, s, t, o, mn, gg; void dijkstra(int y) { set<pair<int, int>> s; s.insert({0, y}); while(s.size()) { pair<int, int> p = *s.begin(); s.erase(s.begin()); int x = p.second; int cost = p.first; if(cost > d[x]) continue; d[x] = cost; for(auto i : v[x]) { if(cost + i.second < d[i.first]) { d[i.first] = cost + i.second; s.insert({cost + i.second, i.first}); } } } } void dfs(int x, int idk) { vis[x] = 1; if(ans[gg][x] > idk) return; ans[gg][x] = ans[x][gg] = idk; for(auto i : v[x]) { if(d[i.first] && !vis[i.first]) dfs(i.first, min(idk, d[i.first])); } vis[x] = 0; } signed main() { ios::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); cin >> n >> m; for(int i = 1; i <= n; i++) d[i] = 1e9; for(int i = 0; i < m; i++) { int a, b, c; cin >> a >> b >> c; v[a].push_back({b, c}); v[b].push_back({a, c}); } int k; cin >> k; for(int i = 0; i < k; i++) { int x; cin >> x; d[x] = 0; } for(int i = 1; i <= n; i++) { if(!d[i]) dijkstra(i); } if(n <= 15) { for(int i = 1; i <= n; i++) { if(d[i]) { gg = i; dfs(i, d[i]); } } } int q; cin >> q; while(q--) { cin >> s >> t; bool b = 0; for(auto i : v[s]) { if(i.first == t) { b = 1; break; } } if(b) { cout << min(d[s], d[t]) << "\n"; continue; } if(n <= 15) cout << ans[s][t] << "\n"; } return 0; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...