結果
問題 | No.468 役に立つ競技プログラミング実践編 |
ユーザー | yuppe19 😺 |
提出日時 | 2016-12-18 18:03:52 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,233 bytes |
コンパイル時間 | 968 ms |
コンパイル使用メモリ | 77,840 KB |
実行使用メモリ | 32,640 KB |
最終ジャッジ日時 | 2024-05-08 06:42:50 |
合計ジャッジ時間 | 5,321 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,624 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 5 ms
5,376 KB |
testcase_19 | AC | 6 ms
5,376 KB |
testcase_20 | WA | - |
testcase_21 | AC | 5 ms
5,376 KB |
testcase_22 | AC | 6 ms
5,376 KB |
testcase_23 | AC | 5 ms
5,376 KB |
testcase_24 | TLE | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:16:18: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 16 | int n, m; scanf("%d%d", &n, &m); | ~~~~~^~~~~~~~~~~~~~~~ main.cpp:22:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 22 | scanf("%d%d%lld", &a, &b, &c); | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
ソースコード
#include <iostream> #include <algorithm> #include <queue> #include <tuple> using namespace std; using i64 = long long; struct edge { int to; i64 cost; }; vector<vector<edge>> G0, rG; vector<int> cost0, rcost; int main(void) { int n, m; scanf("%d%d", &n, &m); G0.assign(n, vector<edge>()); rG.assign(n, vector<edge>()); int a, b; i64 c; for(int i=0; i<m; ++i) { scanf("%d%d%lld", &a, &b, &c); G0[a].push_back(edge({b, c})); rG[b].push_back(edge({a, c})); } cost0.assign(n, 0); queue<int> que; que.push(0); while(!que.empty()) { int v = que.front(); que.pop(); for(edge e : G0[v]) { if(cost0[e.to] < cost0[v] + e.cost) { cost0[e.to] = cost0[v] + e.cost; que.push(e.to); } } } rcost.assign(n, 0); que.push(n-1); while(!que.empty()) { int v = que.front(); que.pop(); for(edge e : rG[v]) { if(rcost[e.to] < rcost[v] + e.cost) { rcost[e.to] = rcost[v] + e.cost; que.push(e.to); } } } int days = cost0[n-1]; for(int i=0; i<n; ++i) { rcost[i] = days - rcost[i]; } int cnt = 0; for(int i=0; i<n; ++i) { if(cost0[i] != rcost[i]) { ++cnt; } } printf("%d %d/%d\n", days, cnt, n); return 0; }