結果
問題 | No.1 道のショートカット |
ユーザー | ransewhale |
提出日時 | 2018-07-14 00:06:32 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,125 bytes |
コンパイル時間 | 1,474 ms |
コンパイル使用メモリ | 171,060 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-08 05:03:49 |
合計ジャッジ時間 | 3,000 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,944 KB |
testcase_02 | AC | 1 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 1 ms
6,944 KB |
testcase_05 | AC | 1 ms
6,940 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 | WA | - |
testcase_15 | AC | 1 ms
6,940 KB |
testcase_16 | WA | - |
testcase_17 | RE | - |
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 | WA | - |
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 | RE | - |
testcase_43 | AC | 2 ms
6,940 KB |
ソースコード
#include "bits/stdc++.h" using namespace std; typedef long long ll; #define INF (1<<30) #define INFLL (1ll<<60) typedef pair<double, int> P; typedef pair<int, P> E; #define MOD (1000000007ll) #define l_ength size #define EPS (1e-10) void add_mod(ll &a, ll b){ a += b; a %= MOD; } void mul_mod(ll &a, ll b){ a *= b; a %= MOD; } int n,s[2222],t[2222],y[2222]; ll m[2222],memo[55][334]; vector<int> g[2222]; bool done[55][334]; ll dp(int i, int lft){ int j,k; if(done[i][lft]){ return memo[i][lft]; } done[i][lft] = true; memo[i][lft] = INFLL; if(i == (n-1)){ memo[i][lft] = 0ll; return memo[i][lft]; } for(j=(g[i].l_ength()-1); j>=0; --j){ k = g[i][j]; if(lft >= y[k]){ memo[i][lft] = min(memo[i][lft],dp(t[k],lft-y[k])+m[k]); } } return memo[i][lft]; } int main(void){ int v,i,c; fill(done[0],done[55],false); cin >> n >> c >> v; for(i=0; i<n; ++i){ cin >> s[i]; --s[i]; g[s[i]].push_back(i); } for(i=0; i<n; ++i){ cin >> t[i]; --t[i]; } for(i=0; i<n; ++i){ cin >> y[i]; } for(i=0; i<n; ++i){ cin >> m[i]; } cout << ((dp(0,c)==INFLL)?-1ll:dp(0,c)) << endl; return 0; }