結果
問題 | No.2741 Balanced Choice |
ユーザー | eph |
提出日時 | 2024-04-21 02:01:43 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 523 bytes |
コンパイル時間 | 148 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 859,336 KB |
最終ジャッジ日時 | 2024-10-13 00:30:46 |
合計ジャッジ時間 | 6,663 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | MLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
ソースコード
N, W, D = map(int, input().split()) stones = [list(map(int, input().split())) for _ in range(N)] dp = [[-1 for _ in range(2*W+1)] for _ in range(N+1)] dp[0][W] = 0 for i in range(N): t, w, v = stones[i] for d in range(2*W+1): if dp[i][d] == -1: continue if d + (1 if t == 0 else -1) * w <= 2*W: dp[i+1][d+(1 if t == 0 else -1)*w] = max(dp[i+1][d+(1 if t == 0 else -1)*w], dp[i][d] + v) answer = max([dp[N][W+d] for d in range(-D, D+1) if dp[N][W+d] != -1]) print(answer)