結果
問題 | No.468 役に立つ競技プログラミング実践編 |
ユーザー |
|
提出日時 | 2016-12-18 18:11:31 |
言語 | C++11 (gcc 13.3.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,534 bytes |
コンパイル時間 | 975 ms |
コンパイル使用メモリ | 86,100 KB |
実行使用メモリ | 29,056 KB |
最終ジャッジ日時 | 2024-12-14 08:29:16 |
合計ジャッジ時間 | 33,508 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 21 TLE * 10 |
other | AC * 6 |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:17:18: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 17 | int n, m; scanf("%d%d", &n, &m); | ~~~~~^~~~~~~~~~~~~~~~ main.cpp:23:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 23 | 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; vector<bool> seen; 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, -1); cost0[0] = 0; seen.assign(n, false); priority_queue<pair<int, int>> que; que.emplace(0, 0); while(!que.empty()) { int _, v; tie(_, v) = que.top(); que.pop(); // if(seen[v]) { continue; } // seen[v] = true; for(edge e : G0[v]) { if(cost0[e.to] < cost0[v] + e.cost) { cost0[e.to] = cost0[v] + e.cost; que.emplace(cost0[e.to], e.to); } } } rcost.assign(n, -1); rcost[n-1] = 0; seen.assign(n, false); que.emplace(0, n-1); while(!que.empty()) { int _, v; tie(_, v) = que.top(); que.pop(); // if(seen[v]) { continue; } // seen[v] = true; for(edge e : rG[v]) { if(rcost[e.to] < rcost[v] + e.cost) { rcost[e.to] = rcost[v] + e.cost; que.emplace(rcost[e.to], 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; }