結果
問題 | No.807 umg tours |
ユーザー | iqueue02 |
提出日時 | 2019-10-22 17:26:11 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 590 ms / 4,000 ms |
コード長 | 2,060 bytes |
コンパイル時間 | 2,074 ms |
コンパイル使用メモリ | 184,784 KB |
実行使用メモリ | 26,964 KB |
最終ジャッジ日時 | 2024-11-23 19:39:28 |
合計ジャッジ時間 | 9,336 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 3 ms
5,248 KB |
testcase_03 | AC | 3 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 3 ms
5,248 KB |
testcase_07 | AC | 3 ms
5,248 KB |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | AC | 2 ms
5,248 KB |
testcase_11 | AC | 313 ms
18,108 KB |
testcase_12 | AC | 330 ms
16,540 KB |
testcase_13 | AC | 439 ms
19,712 KB |
testcase_14 | AC | 191 ms
10,828 KB |
testcase_15 | AC | 142 ms
9,008 KB |
testcase_16 | AC | 454 ms
20,532 KB |
testcase_17 | AC | 586 ms
26,912 KB |
testcase_18 | AC | 573 ms
26,964 KB |
testcase_19 | AC | 562 ms
23,020 KB |
testcase_20 | AC | 347 ms
13,788 KB |
testcase_21 | AC | 357 ms
14,020 KB |
testcase_22 | AC | 150 ms
8,000 KB |
testcase_23 | AC | 106 ms
6,912 KB |
testcase_24 | AC | 325 ms
23,408 KB |
testcase_25 | AC | 590 ms
26,756 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define rep(i,n) for(int i = 0; i < (n);i++) #define sz(x) int(x.size()) typedef long long ll; typedef pair<int,int> P; using Edge = pair<ll,int>; const ll INF = 1LL<<50; using Graph = vector<vector<Edge>>; template<typename T> vector<T> dijkstra1(const Graph &G, int s){ vector<T> dist((int)G.size(),INF); priority_queue<Edge, vector<Edge>, greater<Edge>> que; dist[s] = 0; que.push(Edge(0,s));//頂点と暫定距離 while (!que.empty()){ Edge e = que.top(); que.pop(); int v = e.second; if (dist[v] < e.first) continue; for (auto p : G[v]) { if (dist[p.first] > dist[v] + p.second) { dist[p.first] = dist[v] + p.second; que.push(make_pair(dist[p.first],p.first)); } } } return dist; } template<typename T> vector<vector<T>> dijkstra2(const Graph &G, int s){ vector<vector<T>> dist(2,vector<T>((int)G.size(),INF)); priority_queue<pair<Edge,int>, vector<pair<Edge,int>>, greater<pair<Edge,int>> > que; dist[0][s] = 0; que.push(make_pair(Edge(0,s),0));//チケットを使ったかと頂点 while (!que.empty()){ pair<Edge,int> e = que.top(); que.pop(); int v = e.first.second; int use = e.second; if (dist[use][v] < e.first.first) continue; for (auto p : G[v]) { if (dist[use][p.first] > dist[use][v] + p.second) { dist[use][p.first] = dist[use][v] + p.second; que.push(make_pair(Edge(dist[use][p.first],p.first),use)); } if (!use) { if (dist[1][p.first] < e.first.first) continue; dist[1][p.first] = e.first.first; que.push(make_pair(Edge(dist[1][p.first],p.first),1)); } } } return dist; } int main(){ int n, m; cin >> n >> m; Graph G(n); rep(i,m) { int a, b, c; cin >> a >> b >> c; a--;b--; G[a].push_back({b,c}); G[b].push_back({a,c}); } auto dist1 = dijkstra1<ll>(G,0); auto dist2 = dijkstra2<ll>(G,0); rep(i,n) { cout << dist1[i] + min(dist2[0][i], dist2[1][i]) << endl; } return 0; }