結果

問題 No.527 ナップサック容量問題
ユーザー ntudantuda
提出日時 2024-11-15 23:52:04
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 536 bytes
コンパイル時間 320 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 102,016 KB
最終ジャッジ日時 2024-11-15 23:52:08
合計ジャッジ時間 4,339 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,584 KB
testcase_01 AC 41 ms
52,096 KB
testcase_02 AC 41 ms
51,840 KB
testcase_03 WA -
testcase_04 AC 41 ms
51,840 KB
testcase_05 AC 61 ms
66,816 KB
testcase_06 AC 93 ms
87,296 KB
testcase_07 WA -
testcase_08 AC 59 ms
64,640 KB
testcase_09 AC 42 ms
51,840 KB
testcase_10 WA -
testcase_11 AC 72 ms
73,088 KB
testcase_12 AC 62 ms
67,456 KB
testcase_13 AC 91 ms
86,016 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 42 ms
52,352 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 42 ms
52,352 KB
testcase_29 WA -
testcase_30 AC 50 ms
60,288 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 41 ms
51,968 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
VW = []
sumv = 0
INF = 10 ** 6
minw = INF
for i in range(N):
    v, w = map(int, input().split())
    sumv += v
    VW.append((v, w))
    minw = min(w,minw)
VW.sort(reverse = True)
V = int(input())
dp2 = [0] * (sumv + 1)
if V == 0:
    print(1)
    print(max(minw-1,1))
    exit()

for v, w in VW:
    tmp = INF
    dp3 = [0] * (sumv + 1)
    for i in range(sumv - v + 1):
        dp3[i + v] = max(dp2[i + v], dp2[i] + w)
    dp2 = dp3
print(dp2[V])
if len(dp2) > V + 1:
    print(dp2[V + 1] - 1)
else:
    print("inf")
0