結果
問題 | No.807 umg tours |
ユーザー | Tlapesium |
提出日時 | 2019-10-31 21:44:46 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,429 bytes |
コンパイル時間 | 3,612 ms |
コンパイル使用メモリ | 230,168 KB |
実行使用メモリ | 13,888 KB |
最終ジャッジ日時 | 2024-09-14 22:11:51 |
合計ジャッジ時間 | 10,888 ms |
ジャッジサーバーID (参考情報) |
judge6 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
10,624 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 3 ms
5,376 KB |
testcase_03 | AC | 3 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 3 ms
5,376 KB |
testcase_07 | AC | 3 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | TLE | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
ソースコード
#pragma GCC optimize("O3") #pragma GCC optimize ("unroll-loops") #pragma GCC target ("avx") #include <bits/stdc++.h> constexpr int INF = 2147483647; constexpr long long int INF_LL = 9223372036854775807; constexpr int MOD = 1000000007; using namespace std; typedef long long int ll; typedef unsigned long long int ull; struct edge { ll to; ll cost; }; typedef pair < ll, ll > P; void dijkstra(int s, vector<vector<edge>>& g, vector<ll> &d) { priority_queue <pair<ll, ll>> q; d = vector<ll>(g.size(), INF_LL); d[s] = 0; q.push({ 0, s }); while (!q.empty()) { P p = q.top(); q.pop(); ll v = p.second; if (d[v] < p.first)continue; for (int i = 0; i < g[v].size(); i++) { edge e = g[v][i]; if (d[e.to] > d[v] + e.cost) { d[e.to] = d[v] + e.cost; q.push({ d[e.to], e.to }); } } } } int main() { cin.tie(0); ios::sync_with_stdio(false); int N, M; cin >> N >> M; vector<vector<edge>> g1(N),g2(N*2); for (int i = 0; i < M; i++) { int a, b, c; cin >> a >> b >> c; a--; b--; g1[a].push_back({ b,c }); g1[b].push_back({ a,c }); g2[a].push_back({ b,c }); g2[b].push_back({ a,c }); g2[a].push_back({ b + N,0 }); g2[b].push_back({ a + N,0 }); g2[a + N].push_back({ b + N,c }); g2[b + N].push_back({ a + N,c }); } vector<ll> d1(N), d2(N * 2); dijkstra(0, g1, d1); dijkstra(0, g2, d2); for (int i = 0; i < N; i++) { cout << min(d1[i] + d2[i + N], d1[i] * 2) << endl; } }