結果

問題 No.527 ナップサック容量問題
ユーザー kurimupykurimupy
提出日時 2020-06-21 01:44:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 339 ms / 2,000 ms
コード長 831 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 144,384 KB
最終ジャッジ日時 2024-07-03 17:42:56
合計ジャッジ時間 7,530 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
63,360 KB
testcase_01 AC 56 ms
64,896 KB
testcase_02 AC 50 ms
62,976 KB
testcase_03 AC 61 ms
67,840 KB
testcase_04 AC 44 ms
60,928 KB
testcase_05 AC 140 ms
96,512 KB
testcase_06 AC 235 ms
132,756 KB
testcase_07 AC 253 ms
119,740 KB
testcase_08 AC 153 ms
92,288 KB
testcase_09 AC 45 ms
61,184 KB
testcase_10 AC 302 ms
133,888 KB
testcase_11 AC 180 ms
112,896 KB
testcase_12 AC 146 ms
99,840 KB
testcase_13 AC 242 ms
135,424 KB
testcase_14 AC 118 ms
89,984 KB
testcase_15 AC 159 ms
104,704 KB
testcase_16 AC 59 ms
66,560 KB
testcase_17 AC 140 ms
98,432 KB
testcase_18 AC 154 ms
102,400 KB
testcase_19 AC 64 ms
68,608 KB
testcase_20 AC 120 ms
90,880 KB
testcase_21 AC 265 ms
144,384 KB
testcase_22 AC 193 ms
116,864 KB
testcase_23 AC 258 ms
142,336 KB
testcase_24 AC 94 ms
80,512 KB
testcase_25 AC 187 ms
115,584 KB
testcase_26 AC 172 ms
110,080 KB
testcase_27 AC 222 ms
111,872 KB
testcase_28 AC 162 ms
104,832 KB
testcase_29 AC 339 ms
143,360 KB
testcase_30 AC 64 ms
68,864 KB
testcase_31 AC 131 ms
96,000 KB
testcase_32 AC 158 ms
103,552 KB
testcase_33 AC 139 ms
97,408 KB
testcase_34 AC 159 ms
105,344 KB
testcase_35 AC 168 ms
107,776 KB
testcase_36 AC 54 ms
65,536 KB
testcase_37 AC 172 ms
98,048 KB
testcase_38 AC 159 ms
105,196 KB
testcase_39 AC 153 ms
101,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# フツーの01なっぷさっく
N = int(input())
que = [tuple(map(int, input().split())) for i in range(N)]
V = int(input())
# dp[X][W] = X番目までの荷物を使って ちょうど重さWで実現できる最大の価値
dp = [[0 for i in range(10**5+1)] for j in range(N+1)]
for i in range(N):
    value, weight = que[i]
    for j in range(10**5+1):
        if j >= weight:
            dp[i+1][j] = max(dp[i+1][j],dp[i][j], dp[i][j-weight]+value)
        else:
            dp[i+1][j]=max(dp[i+1][j],dp[i][j])

wanted = dp[N]
mini = 1
for i in range(1,10**5+1):
    if wanted[i] == V:
        mini = i
        break
maxi = mini
for i in range(mini,10**5+1):
    if wanted[i] == V:
        maxi = i

value_max=0
for value,weight in que:
    value_max+=value
if value_max==wanted[maxi]:
    maxi="inf"
print(mini)
print(maxi)
0