結果
問題 | No.807 umg tours |
ユーザー | tnakao0123 |
提出日時 | 2019-03-24 22:23:13 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 218 ms / 4,000 ms |
コード長 | 1,725 bytes |
コンパイル時間 | 1,542 ms |
コンパイル使用メモリ | 93,476 KB |
実行使用メモリ | 17,624 KB |
最終ジャッジ日時 | 2024-05-02 23:42:14 |
合計ジャッジ時間 | 5,107 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
5,888 KB |
testcase_01 | AC | 3 ms
5,888 KB |
testcase_02 | AC | 3 ms
6,016 KB |
testcase_03 | AC | 4 ms
6,272 KB |
testcase_04 | AC | 4 ms
6,016 KB |
testcase_05 | AC | 3 ms
5,888 KB |
testcase_06 | AC | 3 ms
6,144 KB |
testcase_07 | AC | 3 ms
6,016 KB |
testcase_08 | AC | 3 ms
6,016 KB |
testcase_09 | AC | 3 ms
6,016 KB |
testcase_10 | AC | 3 ms
6,016 KB |
testcase_11 | AC | 110 ms
12,908 KB |
testcase_12 | AC | 109 ms
12,232 KB |
testcase_13 | AC | 156 ms
13,988 KB |
testcase_14 | AC | 59 ms
9,476 KB |
testcase_15 | AC | 45 ms
8,576 KB |
testcase_16 | AC | 155 ms
14,308 KB |
testcase_17 | AC | 218 ms
17,500 KB |
testcase_18 | AC | 218 ms
17,624 KB |
testcase_19 | AC | 204 ms
15,256 KB |
testcase_20 | AC | 95 ms
11,072 KB |
testcase_21 | AC | 103 ms
11,400 KB |
testcase_22 | AC | 39 ms
8,612 KB |
testcase_23 | AC | 30 ms
7,936 KB |
testcase_24 | AC | 90 ms
13,664 KB |
testcase_25 | AC | 214 ms
17,268 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; }