結果
問題 | No.807 umg tours |
ユーザー | treeone |
提出日時 | 2019-03-22 21:35:36 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 492 ms / 4,000 ms |
コード長 | 1,607 bytes |
コンパイル時間 | 2,401 ms |
コンパイル使用メモリ | 211,196 KB |
実行使用メモリ | 24,352 KB |
最終ジャッジ日時 | 2024-05-02 23:16:43 |
合計ジャッジ時間 | 8,440 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 4 ms
5,760 KB |
testcase_01 | AC | 4 ms
5,888 KB |
testcase_02 | AC | 4 ms
5,760 KB |
testcase_03 | AC | 4 ms
5,888 KB |
testcase_04 | AC | 4 ms
5,760 KB |
testcase_05 | AC | 5 ms
5,760 KB |
testcase_06 | AC | 4 ms
5,888 KB |
testcase_07 | AC | 4 ms
5,760 KB |
testcase_08 | AC | 4 ms
5,760 KB |
testcase_09 | AC | 4 ms
5,760 KB |
testcase_10 | AC | 4 ms
5,760 KB |
testcase_11 | AC | 191 ms
17,820 KB |
testcase_12 | AC | 238 ms
15,200 KB |
testcase_13 | AC | 311 ms
17,996 KB |
testcase_14 | AC | 126 ms
11,076 KB |
testcase_15 | AC | 95 ms
9,668 KB |
testcase_16 | AC | 300 ms
19,056 KB |
testcase_17 | AC | 452 ms
23,376 KB |
testcase_18 | AC | 439 ms
23,412 KB |
testcase_19 | AC | 403 ms
20,252 KB |
testcase_20 | AC | 241 ms
12,660 KB |
testcase_21 | AC | 257 ms
12,916 KB |
testcase_22 | AC | 102 ms
8,832 KB |
testcase_23 | AC | 77 ms
8,064 KB |
testcase_24 | AC | 223 ms
17,812 KB |
testcase_25 | AC | 492 ms
24,352 KB |
ソースコード
#include <bits/stdc++.h> #define rep(i, a, n) for(int i = a; i < n; i++) #define int long long using namespace std; typedef pair<int, int> P; const int mod = 1000000007; const int INF = 1e18; int n, m; const int MAX_V = 100010; struct edge{ int to, cost; edge(int to, int cost):to(to), cost(cost){} }; struct S{ int cost, to; bool flag; S(int cost, int to, bool flag):cost(cost), to(to), flag(flag){} bool operator>(const S &s) const{ return cost > s.cost; } }; vector<edge> G[MAX_V]; struct Dijkstra{ vector<int> d, e; Dijkstra(){} Dijkstra(int V){ d.resize(V, INF); e.resize(V, INF); } void calc(int s){ d[s] = 0; e[s] = 0; priority_queue<S, vector<S>, greater<S> > q; q.push({d[s], s, false}); while(!q.empty()){ S p = q.top(); q.pop(); int from = p.to; int cost = p.cost; bool f = p.flag; if(d[from] < cost) continue; rep(i, 0, G[from].size()){ int next = G[from][i].to; int newCost = cost + G[from][i].cost; if(f == false){ if(d[next] > newCost){ d[next] = newCost; q.push({newCost, next, f}); } if(e[next] > cost){ e[next] = cost; q.push({cost, next, true}); } }else{ if(e[next] > newCost){ e[next] = newCost; q.push({newCost, next, f}); } } } } } }; signed main(){ cin.tie(nullptr); ios::sync_with_stdio(false); cin >> n >> m; rep(i, 0, m){ int u, v, c; cin >> u >> v >> c; u--; v--; G[u].push_back({v, c}); G[v].push_back({u, c}); } Dijkstra ds(n); ds.calc(0); rep(i, 0, n){ int ans = ds.d[i] + ds.e[i]; cout << ans << endl; } }