結果

問題 No.2026 Yet Another Knapsack Problem
ユーザー suisensuisen
提出日時 2022-07-30 00:38:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 3,785 ms / 10,000 ms
コード長 608 bytes
コンパイル時間 250 ms
コンパイル使用メモリ 82,568 KB
実行使用メモリ 126,208 KB
最終ジャッジ日時 2024-07-19 18:45:36
合計ジャッジ時間 29,001 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,968 KB
testcase_01 AC 38 ms
52,352 KB
testcase_02 AC 36 ms
52,352 KB
testcase_03 AC 54 ms
65,024 KB
testcase_04 AC 52 ms
63,360 KB
testcase_05 AC 44 ms
59,264 KB
testcase_06 AC 59 ms
65,024 KB
testcase_07 AC 52 ms
64,000 KB
testcase_08 AC 46 ms
60,544 KB
testcase_09 AC 62 ms
67,712 KB
testcase_10 AC 53 ms
64,384 KB
testcase_11 AC 57 ms
66,432 KB
testcase_12 AC 37 ms
52,352 KB
testcase_13 AC 59 ms
66,944 KB
testcase_14 AC 55 ms
65,280 KB
testcase_15 AC 35 ms
51,968 KB
testcase_16 AC 53 ms
64,384 KB
testcase_17 AC 52 ms
63,616 KB
testcase_18 AC 36 ms
52,352 KB
testcase_19 AC 51 ms
64,000 KB
testcase_20 AC 35 ms
51,584 KB
testcase_21 AC 52 ms
63,616 KB
testcase_22 AC 51 ms
62,848 KB
testcase_23 AC 54 ms
64,640 KB
testcase_24 AC 38 ms
51,968 KB
testcase_25 AC 45 ms
60,160 KB
testcase_26 AC 63 ms
66,176 KB
testcase_27 AC 54 ms
63,360 KB
testcase_28 AC 159 ms
77,824 KB
testcase_29 AC 162 ms
77,952 KB
testcase_30 AC 161 ms
78,208 KB
testcase_31 AC 152 ms
78,080 KB
testcase_32 AC 151 ms
77,840 KB
testcase_33 AC 182 ms
78,080 KB
testcase_34 AC 156 ms
77,952 KB
testcase_35 AC 137 ms
77,396 KB
testcase_36 AC 153 ms
77,696 KB
testcase_37 AC 147 ms
78,204 KB
testcase_38 AC 2,641 ms
126,208 KB
testcase_39 AC 3,774 ms
125,696 KB
testcase_40 AC 3,362 ms
126,024 KB
testcase_41 AC 3,755 ms
125,952 KB
testcase_42 AC 3,408 ms
126,080 KB
testcase_43 AC 3,771 ms
125,696 KB
testcase_44 AC 3,785 ms
126,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

INF = 1 << 60

N = int(input())
C = [0] * (N + 1)
V = [0] * (N + 1)

for w in range(1, N + 1):
    C[w], V[w] = map(int, input().split())

dp = [[-INF] * (N + 1) for _ in range(N + 1)]
dp[0] = [0] * (N + 1)

for w in reversed(range(1, N + 1)):
    pw = 1
    while C[w]:
        k = min(pw, C[w])
        C[w] -= k
        dw = k * w
        dv = k * V[w]

        for num in reversed(range(k, N // w + 1)):
            for wsum in reversed(range(dw, N + 1)):
                dp[num][wsum] = max(dp[num][wsum], dp[num - k][wsum - dw] + dv)
        pw <<= 1

for num in range(1, N + 1):
    print(dp[num][N])
0