結果
問題 | No.1 道のショートカット |
ユーザー | oba |
提出日時 | 2014-12-22 14:15:34 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,077 bytes |
コンパイル時間 | 921 ms |
コンパイル使用メモリ | 81,332 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-08 03:38:20 |
合計ジャッジ時間 | 1,852 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,944 KB |
testcase_02 | AC | 1 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | WA | - |
testcase_05 | AC | 1 ms
6,944 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 3 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 2 ms
6,940 KB |
testcase_16 | WA | - |
testcase_17 | AC | 2 ms
6,940 KB |
testcase_18 | AC | 2 ms
6,940 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 2 ms
6,944 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 2 ms
6,940 KB |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | AC | 1 ms
6,944 KB |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | AC | 2 ms
6,944 KB |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | AC | 2 ms
6,940 KB |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | AC | 1 ms
6,944 KB |
testcase_43 | AC | 2 ms
6,944 KB |
ソースコード
#include <iostream> #include <algorithm> #include <vector> #include <map> #define REP(a, b) for(int a=0; a<(int)b; a++) using namespace std; int main(){ int N, C, V; vector <int> S, T, Y, M; map <int, map<int, pair<int, int> > > keiro; cin >> N >> C >> V; S.resize(V); T.resize(V); Y.resize(V); M.resize(V); REP(i,V) cin >> S[i]; REP(i,V) cin >> T[i]; REP(i,V) cin >> Y[i]; REP(i,V) cin >> M[i]; REP(i, V) keiro[S[i]][T[i]] = pair<int, int>(Y[i], M[i]); int A[N+1][C+1]; REP(i, N+1){ REP(j, C+1){ A[i][j] = 0; } } for(int i=1; i<N; i++){ for(int j=i+1; j<=N; j++){ if(keiro[i].find(j) != keiro[i].end()){ int money = keiro[i][j].first, time = keiro[i][j].second; for(int k=0; k <= (C-money); k++){ if(A[i][k+money]==0 && i!=1) break; A[j][k] = (A[j][k]==0)? A[i][k+money]+time : min(A[j][k], A[i][k+money]+time); } } } } int min_time = -1; REP(i, C+1){ if(A[N][i]==0) continue; min_time = (min_time==-1) ? A[N][i] : min(A[N][i], min_time); } cout << min_time << endl; return 0; }