結果
問題 | No.807 umg tours |
ユーザー | tnakao0123 |
提出日時 | 2019-03-24 22:23:13 |
言語 | C++11 (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 187 ms / 4,000 ms |
コード長 | 1,725 bytes |
コンパイル時間 | 982 ms |
コンパイル使用メモリ | 93,088 KB |
実行使用メモリ | 17,496 KB |
最終ジャッジ日時 | 2024-11-23 19:20:32 |
合計ジャッジ時間 | 4,770 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
6,016 KB |
testcase_01 | AC | 2 ms
5,888 KB |
testcase_02 | AC | 3 ms
6,144 KB |
testcase_03 | AC | 3 ms
6,016 KB |
testcase_04 | AC | 3 ms
6,144 KB |
testcase_05 | AC | 3 ms
6,016 KB |
testcase_06 | AC | 3 ms
6,016 KB |
testcase_07 | AC | 2 ms
6,144 KB |
testcase_08 | AC | 2 ms
5,888 KB |
testcase_09 | AC | 3 ms
6,016 KB |
testcase_10 | AC | 3 ms
6,016 KB |
testcase_11 | AC | 111 ms
12,912 KB |
testcase_12 | AC | 102 ms
12,360 KB |
testcase_13 | AC | 139 ms
13,864 KB |
testcase_14 | AC | 57 ms
9,476 KB |
testcase_15 | AC | 43 ms
8,392 KB |
testcase_16 | AC | 141 ms
14,340 KB |
testcase_17 | AC | 185 ms
17,368 KB |
testcase_18 | AC | 187 ms
17,496 KB |
testcase_19 | AC | 175 ms
15,272 KB |
testcase_20 | AC | 88 ms
11,076 KB |
testcase_21 | AC | 90 ms
11,308 KB |
testcase_22 | AC | 37 ms
8,492 KB |
testcase_23 | AC | 29 ms
7,936 KB |
testcase_24 | AC | 87 ms
13,664 KB |
testcase_25 | AC | 183 ms
17,264 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:57:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 57 | scanf("%d%d", &n, &m); | ~~~~~^~~~~~~~~~~~~~~~ main.cpp:61:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 61 | scanf("%d%d%d", &a, &b, &c); | ~~~~~^~~~~~~~~~~~~~~~~~~~~~
ソースコード
/* -*- coding: utf-8 -*- * * 807.cc: No.807 umg tours - yukicoder */ #include<cstdio> #include<cstdlib> #include<cstring> #include<cmath> #include<iostream> #include<string> #include<vector> #include<map> #include<set> #include<stack> #include<list> #include<queue> #include<deque> #include<algorithm> #include<numeric> #include<utility> #include<complex> #include<functional> using namespace std; /* constant */ const int MAX_N = 100000; const long long LINF = 1LL << 62; /* typedef */ typedef long long ll; typedef pair<int,int> pii; typedef vector<pii> vpii; struct Stat { ll d; int i, j; Stat() {} Stat(ll _d, int _i, int _j): d(_d), i(_i), j(_j) {} bool operator<(const Stat &s) const { return d > s.d; } }; /* global variables */ vpii nbrs[MAX_N]; ll dp[MAX_N][2]; /* subroutines */ /* main */ int main() { int n, m; scanf("%d%d", &n, &m); for (int i = 0; i < m; i++) { int a, b, c; scanf("%d%d%d", &a, &b, &c); a--, b--; nbrs[a].push_back(pii(b, c)); nbrs[b].push_back(pii(a, c)); } for (int i = 0; i < n; i++) dp[i][0] = dp[i][1] = LINF; dp[0][0] = 0; priority_queue<Stat> q; q.push(Stat(0, 0, 0)); while (! q.empty()) { Stat u = q.top(); q.pop(); if (dp[u.i][u.j] != u.d) continue; vpii &nbru = nbrs[u.i]; for (vpii::iterator vit = nbru.begin(); vit != nbru.end(); vit++) { int &vi = vit->first; ll vd = u.d + vit->second; if (dp[vi][u.j] > vd) { dp[vi][u.j] = vd; q.push(Stat(vd, vi, u.j)); } if (u.j == 0 && dp[vi][1] > u.d) { dp[vi][1] = u.d; q.push(Stat(u.d, vi, 1)); } } } for (int i = 0; i < n; i++) printf("%lld\n", dp[i][0] + min(dp[i][0], dp[i][1])); return 0; }