結果
問題 | No.1037 exhausted |
ユーザー | ayaoni |
提出日時 | 2020-12-14 04:48:13 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 233 ms / 2,000 ms |
コード長 | 1,118 bytes |
コンパイル時間 | 139 ms |
コンパイル使用メモリ | 81,868 KB |
実行使用メモリ | 108,468 KB |
最終ジャッジ日時 | 2024-09-20 00:25:35 |
合計ジャッジ時間 | 3,131 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
52,424 KB |
testcase_01 | AC | 36 ms
52,820 KB |
testcase_02 | AC | 35 ms
53,676 KB |
testcase_03 | AC | 35 ms
52,728 KB |
testcase_04 | AC | 38 ms
52,964 KB |
testcase_05 | AC | 37 ms
52,928 KB |
testcase_06 | AC | 36 ms
54,084 KB |
testcase_07 | AC | 36 ms
52,744 KB |
testcase_08 | AC | 36 ms
53,756 KB |
testcase_09 | AC | 37 ms
52,856 KB |
testcase_10 | AC | 36 ms
53,344 KB |
testcase_11 | AC | 36 ms
53,756 KB |
testcase_12 | AC | 166 ms
107,968 KB |
testcase_13 | AC | 166 ms
108,044 KB |
testcase_14 | AC | 164 ms
107,744 KB |
testcase_15 | AC | 165 ms
107,884 KB |
testcase_16 | AC | 165 ms
108,056 KB |
testcase_17 | AC | 172 ms
108,468 KB |
testcase_18 | AC | 165 ms
108,068 KB |
testcase_19 | AC | 162 ms
108,064 KB |
testcase_20 | AC | 233 ms
108,412 KB |
testcase_21 | AC | 158 ms
107,828 KB |
testcase_22 | AC | 121 ms
108,160 KB |
ソースコード
import sys sys.setrecursionlimit(10**7) def I(): return int(sys.stdin.readline().rstrip()) def MI(): return map(int,sys.stdin.readline().rstrip().split()) def LI(): return list(map(int,sys.stdin.readline().rstrip().split())) def LI2(): return list(map(int,sys.stdin.readline().rstrip())) def S(): return sys.stdin.readline().rstrip() def LS(): return list(sys.stdin.readline().rstrip().split()) def LS2(): return list(sys.stdin.readline().rstrip()) N,V,L = MI() XVW = [(0,0,0)]+[tuple(MI()) for _ in range(N)] XVW.sort() inf = 10**18 dp = [[inf]*(V+1) for _ in range(N+1)] # dp[i][j] = i番目の地点に到達した際に、j以上の燃料を残すために必要な費用の最小値 for j in range(V+1): dp[0][j] = 0 for i in range(1,N+1): x,v,w = XVW[i] d = x-XVW[i-1][0] for j in range(V+1): if j+d <= V: dp[i][j] = min(dp[i][j],dp[i-1][j+d]) if max(j-v,0)+d <= V: dp[i][j] = min(dp[i][j],dp[i-1][max(j-v,0)+d]+w) y = L-XVW[-1][0] if y > V: print(-1) else: ans = dp[-1][y] if ans >= inf: print(-1) else: print(ans)