結果
問題 | No.1344 Typical Shortest Path Sum |
ユーザー | tnakao0123 |
提出日時 | 2021-01-19 18:21:41 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,579 bytes |
コンパイル時間 | 863 ms |
コンパイル使用メモリ | 101,048 KB |
実行使用メモリ | 77,544 KB |
最終ジャッジ日時 | 2024-12-17 14:43:23 |
合計ジャッジ時間 | 18,749 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,148 KB |
testcase_01 | AC | 2 ms
10,276 KB |
testcase_02 | AC | 2 ms
13,640 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 1 ms
10,148 KB |
testcase_06 | AC | 2 ms
13,636 KB |
testcase_07 | WA | - |
testcase_08 | AC | 2 ms
13,636 KB |
testcase_09 | WA | - |
testcase_10 | AC | 1 ms
6,820 KB |
testcase_11 | AC | 2 ms
6,820 KB |
testcase_12 | AC | 2 ms
6,820 KB |
testcase_13 | AC | 1 ms
6,816 KB |
testcase_14 | WA | - |
testcase_15 | AC | 2 ms
6,816 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 2 ms
6,820 KB |
testcase_20 | AC | 2 ms
6,816 KB |
testcase_21 | WA | - |
testcase_22 | AC | 2 ms
6,820 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 2 ms
6,816 KB |
testcase_26 | WA | - |
testcase_27 | AC | 2 ms
6,816 KB |
testcase_28 | WA | - |
testcase_29 | AC | 2 ms
6,816 KB |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | AC | 2 ms
6,820 KB |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | AC | 2 ms
6,816 KB |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | WA | - |
testcase_45 | WA | - |
testcase_46 | WA | - |
testcase_47 | WA | - |
testcase_48 | WA | - |
testcase_49 | WA | - |
testcase_50 | WA | - |
testcase_51 | WA | - |
testcase_52 | WA | - |
testcase_53 | WA | - |
testcase_54 | WA | - |
testcase_55 | WA | - |
testcase_56 | WA | - |
testcase_57 | WA | - |
testcase_58 | WA | - |
testcase_59 | WA | - |
testcase_60 | AC | 4 ms
6,816 KB |
testcase_61 | AC | 2 ms
6,816 KB |
testcase_62 | TLE | - |
testcase_63 | AC | 373 ms
17,456 KB |
testcase_64 | TLE | - |
testcase_65 | TLE | - |
testcase_66 | TLE | - |
testcase_67 | TLE | - |
testcase_68 | AC | 90 ms
6,820 KB |
testcase_69 | AC | 177 ms
9,692 KB |
testcase_70 | AC | 2 ms
6,816 KB |
testcase_71 | AC | 2 ms
6,816 KB |
testcase_72 | AC | 2 ms
6,820 KB |
testcase_73 | AC | 2 ms
6,816 KB |
testcase_74 | AC | 1 ms
6,816 KB |
testcase_75 | AC | 1 ms
6,816 KB |
testcase_76 | AC | 2 ms
6,816 KB |
testcase_77 | AC | 1 ms
6,816 KB |
testcase_78 | AC | 1 ms
6,820 KB |
testcase_79 | AC | 1 ms
10,148 KB |
ソースコード
/* -*- coding: utf-8 -*- * * 1344.cc: No.1344 Typical Shortest Path Sum - 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 = 100; const long long LINF = 1LL << 62; /* typedef */ typedef long long ll; typedef pair<int,ll> pil; typedef pair<ll,int> pli; typedef vector<pil> vpil; /* global variables */ vpil nbrs[MAX_N]; ll ds[MAX_N]; /* subroutines */ void dijkstra(int n, int st) { fill(ds, ds + n, LINF); ds[st] = 0; priority_queue<pil> q; q.push(pli(0, st)); while (! q.empty()) { pli u = q.top(); q.pop(); ll ud = -u.first; int ui = u.second; if (ds[ui] != ud) continue; vpil &nbru = nbrs[ui]; for (vpil::iterator vit = nbru.begin(); vit != nbru.end(); vit++) { int vi = vit->first; ll vd = ud + vit->second; if (ds[vi] > vd) { ds[vi] = vd; q.push(pli(-vd, vi)); } } } } /* main */ int main() { int n, m; scanf("%d%d", &n, &m); for (int i = 0; i < m; i++) { int u, v; ll d; scanf("%d%d%lld", &u, &v, &d); u--, v--; nbrs[u].push_back(pil(v, d)); } for (int st = 0; st < n; st++) { dijkstra(n, st); ll sum = 0; for (int i = 0; i < n; i++) if (ds[i] < LINF) sum += ds[i]; printf("%lld\n", sum); } return 0; }