結果

問題 No.527 ナップサック容量問題
ユーザー rlangevinrlangevin
提出日時 2023-02-17 12:46:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 325 ms / 2,000 ms
コード長 748 bytes
コンパイル時間 285 ms
コンパイル使用メモリ 82,748 KB
実行使用メモリ 146,816 KB
最終ジャッジ日時 2024-07-19 07:21:56
合計ジャッジ時間 6,756 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
63,872 KB
testcase_01 AC 62 ms
64,640 KB
testcase_02 AC 43 ms
51,968 KB
testcase_03 AC 69 ms
66,944 KB
testcase_04 AC 52 ms
60,160 KB
testcase_05 AC 44 ms
51,840 KB
testcase_06 AC 42 ms
52,480 KB
testcase_07 AC 247 ms
120,832 KB
testcase_08 AC 41 ms
52,096 KB
testcase_09 AC 42 ms
52,096 KB
testcase_10 AC 293 ms
135,424 KB
testcase_11 AC 42 ms
51,840 KB
testcase_12 AC 42 ms
51,968 KB
testcase_13 AC 43 ms
52,224 KB
testcase_14 AC 113 ms
90,496 KB
testcase_15 AC 144 ms
105,728 KB
testcase_16 AC 67 ms
66,304 KB
testcase_17 AC 128 ms
98,176 KB
testcase_18 AC 139 ms
103,040 KB
testcase_19 AC 70 ms
67,712 KB
testcase_20 AC 115 ms
91,520 KB
testcase_21 AC 228 ms
146,816 KB
testcase_22 AC 170 ms
118,912 KB
testcase_23 AC 223 ms
144,512 KB
testcase_24 AC 91 ms
79,488 KB
testcase_25 AC 163 ms
116,224 KB
testcase_26 AC 157 ms
111,616 KB
testcase_27 AC 216 ms
111,744 KB
testcase_28 AC 142 ms
104,576 KB
testcase_29 AC 325 ms
146,304 KB
testcase_30 AC 41 ms
51,968 KB
testcase_31 AC 124 ms
97,536 KB
testcase_32 AC 141 ms
105,728 KB
testcase_33 AC 132 ms
99,584 KB
testcase_34 AC 143 ms
107,520 KB
testcase_35 AC 156 ms
109,184 KB
testcase_36 AC 63 ms
64,768 KB
testcase_37 AC 130 ms
97,280 KB
testcase_38 AC 147 ms
106,496 KB
testcase_39 AC 143 ms
103,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
M = 105 * 1000
inf = 10 ** 18
v, w = [0] * N, [0] * N
for i in range(N):
    v[i], w[i] = map(int, input().split())
V = int(input())
if V == sum(v):
    print(sum(w))
    print("inf")
    exit()

pre = [-inf] * M
pre[0] = 0
for i in range(N):
    dp = [-inf] * M
    for j in range(M):
        dp[j] = pre[j]
        if j - w[i] >= 0:
            dp[j] = max(dp[j], pre[j - w[i]] + v[i])
    pre, dp = dp, pre

for i in range(1, M):
    pre[i] = max(pre[i], pre[i - 1])

ans1, ans2 = 0, 0
if V == 0:
    print(1)
    print(min(w) - 1)
    exit()

for i in range(M):
    if pre[i] == V and ans1 == 0:
        ans1 = i
    if pre[i] != V and ans1 and ans2 == 0:
        ans2 = i - 1
if ans1 == 0:
    ans1 = 1
print(ans1)
print(ans2)
0