結果
問題 | No.1 道のショートカット |
ユーザー | dosuken123 |
提出日時 | 2016-02-15 11:42:38 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,403 bytes |
コンパイル時間 | 788 ms |
コンパイル使用メモリ | 77,904 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-08 04:22:39 |
合計ジャッジ時間 | 2,505 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | WA | - |
testcase_17 | RE | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 2 ms
5,376 KB |
testcase_22 | AC | 2 ms
5,376 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 2 ms
5,376 KB |
testcase_26 | AC | 2 ms
5,376 KB |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | AC | 3 ms
5,376 KB |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | RE | - |
testcase_43 | RE | - |
ソースコード
#include <iostream> #include <iomanip> #include <vector> #include <algorithm> #include <string> #include <sstream> #include <climits> using namespace std; int N,C,V; int memo[51][301]; vector<vector<vector<int>>> map; int ret; int recursive(int cur_node, int cur_cost) { int min_dist = INT_MAX; if (memo[cur_node][cur_cost] != INT_MAX) return memo[cur_node][cur_cost]; if (cur_node == N) return 0; for (int i = 0; i < map[cur_node].size(); i++) { if ((cur_cost+map[cur_node][i][2]) > C) continue; int min_dist_tmp = recursive(map[cur_node][i][0], cur_cost+map[cur_node][i][2])+map[cur_node][i][1]; min_dist = min(min_dist, min_dist_tmp); } memo[cur_node][cur_cost] = min_dist; return min_dist; } int main() { cin >> N >> C >> V; vector<int> S(V); vector<int> T(V); vector<int> Y(V); vector<int> M(V); map.resize(V+1); for (int i = 0; i < V; i++) cin >> S[i]; for (int i = 0; i < V; i++) cin >> T[i]; for (int i = 0; i < V; i++) cin >> Y[i]; for (int i = 0; i < V; i++) cin >> M[i]; for (int n = 0; n <= N; n++) for (int c = 0; c <= C; c++) { memo[n][c] = INT_MAX; } for (int i = 0; i < V; i++) { vector<int> v = vector<int>{T[i],M[i],Y[i]}; map[S[i]].push_back(v); } int ret = recursive(1, 0); if (ret == INT_MAX) ret = -1; cout << ret << endl; return 0; }