結果
問題 | No.1 道のショートカット |
ユーザー | takana-sky07 |
提出日時 | 2019-06-30 11:34:39 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,227 bytes |
コンパイル時間 | 657 ms |
コンパイル使用メモリ | 75,740 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-08 05:11:47 |
合計ジャッジ時間 | 6,337 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,948 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 1 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | RE | - |
testcase_15 | AC | 1 ms
6,940 KB |
testcase_16 | RE | - |
testcase_17 | AC | 2 ms
6,944 KB |
testcase_18 | RE | - |
testcase_19 | AC | 2 ms
6,944 KB |
testcase_20 | RE | - |
testcase_21 | AC | 2 ms
6,940 KB |
testcase_22 | AC | 2 ms
6,940 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 2 ms
6,944 KB |
testcase_27 | RE | - |
testcase_28 | AC | 3 ms
6,940 KB |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | RE | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | AC | 2 ms
6,940 KB |
testcase_43 | AC | 2 ms
6,940 KB |
ソースコード
/* * 001_sample.cpp * * No.1 ̃V[gJbg * Փx3 */ #include <iostream> #include <vector> using VEC = std::vector<int>; static const int INF = 1e9+7; template <class A> bool setMin(A& left, A const & right) { if (left < right) { return false; } left = right; return true; } int main () { int N = 0; int C = 0; int V = 0; std::cin >> N >> C >> V; VEC S(V); VEC T(V); VEC Y(V); VEC M(V); for (int i = 0; i < V; i++) { std::cin >> S[i]; } for (int i = 0; i < V; i++) { std::cin >> T[i]; } for (int i = 0; i < V; i++) { std::cin >> Y[i]; } for (int i = 0; i < V; i++) { std::cin >> M[i]; } int dp[N][C+1]; for (int i = 0; i < N; i++) { for (int j = 0; j < C+1; j++) { dp[i][j] = INF; } } dp[0][0] = 0; for (int i = 0; i < N; i++) { for (int j = C; j >= 0; j--) { if (dp[i][j] != INF) { for (int k = 0; k < V; k++) { if (i+1 == S[k] && k + Y[k] <= C) { setMin(dp[T[k] - 1][j + Y[k]], dp[i][j] + M[k]); } } } } } int ans = INF; for (int i = 0; i < C+1; i++) { setMin(ans, dp[N-1][i]); } std::cout << (ans == INF ? -1 : ans) << std::endl; return 0; }