結果
問題 | No.2492 Knapsack Problem? |
ユーザー | Cecil |
提出日時 | 2023-10-06 21:53:31 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 474 bytes |
コンパイル時間 | 131 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 15,616 KB |
最終ジャッジ日時 | 2024-07-26 16:02:22 |
合計ジャッジ時間 | 2,020 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 29 ms
10,752 KB |
testcase_01 | AC | 29 ms
10,752 KB |
testcase_02 | WA | - |
testcase_03 | AC | 26 ms
10,752 KB |
testcase_04 | AC | 27 ms
10,880 KB |
testcase_05 | AC | 25 ms
10,752 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
ソースコード
N,ww = map(int, input().split()) dp = [ [-float("inf")] * (ww+1) for _ in range(N+1) ] for i in range(ww+1): dp[0][i] = 0 V = list() W = list() for _ in range(N): v,w = map(int, input().split()) V.append(v) W.append(w) for i in range(N): for j in range(ww+1): if 0<=j-W[i]<=ww: dp[i+1][j] = max(dp[i][j-W[i]]+V[i],dp[i][j]) else: dp[i+1][j] = max(dp[i+1][j],dp[i][j]) print(max(dp[N]) if max(dp[N])>0 else -1)