結果
問題 | No.1 道のショートカット |
ユーザー | fantasiabaetica |
提出日時 | 2018-07-06 18:37:35 |
言語 | C++11 (gcc 11.4.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,325 bytes |
コンパイル時間 | 499 ms |
コンパイル使用メモリ | 61,872 KB |
実行使用メモリ | 10,144 KB |
最終ジャッジ日時 | 2024-07-08 05:03:32 |
合計ジャッジ時間 | 7,636 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | WA | - |
testcase_05 | RE | - |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | TLE | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
ソースコード
#include <iostream> #include <climits> #include <queue> #include <vector> #define REP(i,a,b) for(int i=(a); i<(b); i++) #define p_int pair<int, int> using namespace std; int main(){ // 街の数、コスト上限、道の数 int city_n, c_max, load_n; cin >> city_n >> c_max >> load_n; // 始点、終点、コスト、時間 int s[load_n], t[load_n], c[load_n], time[load_n]; REP(i, 0, load_n) cin >> s[i]; REP(i, 0, load_n) cin >> t[i]; REP(i, 0, load_n) cin >> c[i]; REP(i, 0, load_n) cin >> time[i]; // 現在地を縦軸、使った費用を横軸に取ってDP int dp[city_n + 1][c_max + 1]; REP(i, 0, c_max + 1){ REP(j, 0, city_n + 1){ dp[i][j] = INT_MAX; } } dp[1][0] = 0; REP(i, 1, city_n) { REP(j, 0, c_max) { // iに至る辺があるか調べる REP(k, 0, load_n){ if (i == t[k] && j - c[k] >= 0){ // s[k] < t[k] (=i) なのでOK dp[i][j] = min(dp[i][j], dp[s[k]][j - c[k]]); } } } } // dp[i][city_n]における最小値を返す int ans = INT_MAX; REP(i, 0, c_max + 1){ ans = min(ans, dp[city_n][i]); } if (ans == INT_MAX) cout << -1 << endl; else cout << ans << endl; return 0; }