結果
問題 | No.1 道のショートカット |
ユーザー | opqopq_ |
提出日時 | 2015-04-29 19:48:36 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,341 bytes |
コンパイル時間 | 497 ms |
コンパイル使用メモリ | 50,408 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-08 03:53:34 |
合計ジャッジ時間 | 1,606 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | AC | 1 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | AC | 1 ms
6,940 KB |
testcase_07 | AC | 1 ms
6,940 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 1 ms
6,940 KB |
testcase_16 | WA | - |
testcase_17 | AC | 1 ms
6,940 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | AC | 1 ms
6,940 KB |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | AC | 1 ms
6,940 KB |
testcase_43 | AC | 1 ms
6,940 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:23:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 23 | scanf("%d%d%d", &N, &C, &V); | ~~~~~^~~~~~~~~~~~~~~~~~~~~~ main.cpp:26:30: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 26 | scanf("%d", &data[j][i]); | ~~~~~^~~~~~~~~~~~~~~~~~~
ソースコード
#include <cstdio> #include <algorithm> #include <queue> using namespace std; #define MAX_N 50 #define INF 1000000007 struct State { int n, c, t; bool operator < (const State& r) const { return t > r.t; } State(int x, int y, int z) : n(x), c(y), t(z) {} }; int N, C, V; int data[MAX_N][4]; vector<State> edge[MAX_N]; int maxm[MAX_N][2]; int main() { scanf("%d%d%d", &N, &C, &V); for (int i = 0; i < 4; i++) { for (int j = 0; j < V; j++) { scanf("%d", &data[j][i]); if (i < 2) data[j][i]--; } } for (int i = 0; i < N; i++) { for (int j = 0; j < 2; j++) { maxm[i][j] = INF; } } for (int i = 0; i < V; i++) { edge[data[i][0]].emplace_back(data[i][1], data[i][2], data[i][3]); } priority_queue<State> pq; maxm[0][0] = maxm[0][1] = 0; pq.emplace(0, 0, 0); int res = 0; while (!pq.empty()) { State s = pq.top(); pq.pop(); if (s.n == N - 1) { res = s.t; break; } if (maxm[s.n][0] < s.c && maxm[s.n][1] < s.t) continue; for (State n : edge[s.n]) { n.c += s.c, n.t += s.t; if (C < n.c) continue; if (maxm[n.n][0] < n.c && maxm[n.n][1] < n.t) continue; if (maxm[n.n][0] == INF) maxm[n.n][0] = n.c, maxm[n.n][1] = n.t; maxm[n.n][0] = max(maxm[n.n][0], n.c); maxm[n.n][1] = max(maxm[n.n][1], n.t); pq.push(n); } } printf("%d\n", res ? res : -1); return 0; }