結果

問題 No.527 ナップサック容量問題
ユーザー neterukunneterukun
提出日時 2019-06-10 05:45:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 152 ms / 2,000 ms
コード長 733 bytes
コンパイル時間 217 ms
コンパイル使用メモリ 81,956 KB
実行使用メモリ 100,784 KB
最終ジャッジ日時 2024-10-06 00:24:27
合計ジャッジ時間 4,671 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,256 KB
testcase_01 AC 41 ms
60,956 KB
testcase_02 AC 34 ms
53,256 KB
testcase_03 AC 45 ms
61,848 KB
testcase_04 AC 34 ms
52,696 KB
testcase_05 AC 63 ms
68,900 KB
testcase_06 AC 130 ms
94,364 KB
testcase_07 AC 98 ms
81,504 KB
testcase_08 AC 56 ms
66,456 KB
testcase_09 AC 33 ms
53,216 KB
testcase_10 AC 129 ms
92,820 KB
testcase_11 AC 78 ms
75,272 KB
testcase_12 AC 67 ms
70,192 KB
testcase_13 AC 143 ms
95,408 KB
testcase_14 AC 63 ms
68,532 KB
testcase_15 AC 81 ms
73,532 KB
testcase_16 AC 47 ms
61,256 KB
testcase_17 AC 65 ms
69,160 KB
testcase_18 AC 72 ms
72,496 KB
testcase_19 AC 49 ms
63,664 KB
testcase_20 AC 58 ms
66,644 KB
testcase_21 AC 152 ms
99,348 KB
testcase_22 AC 105 ms
83,800 KB
testcase_23 AC 142 ms
94,716 KB
testcase_24 AC 52 ms
64,608 KB
testcase_25 AC 89 ms
79,212 KB
testcase_26 AC 80 ms
75,700 KB
testcase_27 AC 83 ms
78,144 KB
testcase_28 AC 80 ms
74,076 KB
testcase_29 AC 149 ms
100,784 KB
testcase_30 AC 34 ms
53,132 KB
testcase_31 AC 41 ms
61,824 KB
testcase_32 AC 45 ms
62,264 KB
testcase_33 AC 43 ms
61,404 KB
testcase_34 AC 44 ms
61,888 KB
testcase_35 AC 83 ms
75,056 KB
testcase_36 AC 44 ms
61,780 KB
testcase_37 AC 66 ms
70,740 KB
testcase_38 AC 74 ms
72,736 KB
testcase_39 AC 71 ms
71,740 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
info = [list(map(int, input().split())) for i in range(n)]
v = int(input())

sum_w = 0
for i in range(n):
    sum_w += info[i][1]

# dp[i][j] := i番目の荷物を入れたときの、重さj以下で実現できる最大価値
dp = [[0]*(sum_w+1) for i in range(n+1)]

for i in range(n):
    for j in range(sum_w+1):
        if j - info[i][1] < 0:
            dp[i+1][j] = dp[i][j]
        else:
            dp[i+1][j] = max(dp[i][j], dp[i][j-info[i][1]] + info[i][0])

flag = False
min_w = 0
max_w = "inf"
for j in range(sum_w+1):
    if dp[n][j] == v and not flag:
        min_w = j
        flag = True
    elif dp[n][j] != v and flag:
        max_w = j - 1
        flag = False
print(max(min_w, 1))
print(max_w)
0