結果
問題 | No.1037 exhausted |
ユーザー | stng |
提出日時 | 2022-08-31 20:53:53 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 634 bytes |
コンパイル時間 | 284 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 77,312 KB |
最終ジャッジ日時 | 2024-11-08 15:44:27 |
合計ジャッジ時間 | 6,085 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 41 ms
57,728 KB |
testcase_01 | AC | 40 ms
51,968 KB |
testcase_02 | WA | - |
testcase_03 | AC | 40 ms
52,096 KB |
testcase_04 | AC | 41 ms
51,840 KB |
testcase_05 | AC | 47 ms
58,752 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 41 ms
52,224 KB |
testcase_09 | WA | - |
testcase_10 | AC | 41 ms
52,224 KB |
testcase_11 | WA | - |
testcase_12 | AC | 137 ms
76,744 KB |
testcase_13 | AC | 150 ms
76,800 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 173 ms
76,928 KB |
testcase_17 | AC | 167 ms
76,736 KB |
testcase_18 | AC | 148 ms
76,860 KB |
testcase_19 | WA | - |
testcase_20 | TLE | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
ソースコード
n,v,l = map(int,input().split()) xvw = [[int(i) for i in input().split()] for j in range(n)] dp = [10**15]*(l+1) dp[v] = 0 pos = 0 for i in range(n): x,vi,wi = xvw[i] dis = x-pos for j in range(l+1): if dis > j: dp[j] = 10**15 else: dp[j-dis] = dp[j] #print(dis) for j in range(l+1): dp[min(v,j+vi)] = min(dp[j]+wi,dp[min(v,j+vi)]) pos = x #print(dp,i) if pos != l: dis = l-pos ans = 10**15 for j in range(l+1): if dis <= j: ans = min(ans,dp[j]) else: ans = min(dp) if ans >= 10**15: print(-1) else: print(ans)