結果

問題 No.527 ナップサック容量問題
ユーザー brthyyjpbrthyyjp
提出日時 2022-03-02 13:25:46
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 516 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 82,268 KB
実行使用メモリ 75,840 KB
最終ジャッジ日時 2024-07-16 06:43:26
合計ジャッジ時間 3,551 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,840 KB
testcase_01 AC 42 ms
51,584 KB
testcase_02 AC 41 ms
51,840 KB
testcase_03 WA -
testcase_04 AC 39 ms
51,456 KB
testcase_05 AC 68 ms
75,136 KB
testcase_06 AC 83 ms
75,136 KB
testcase_07 WA -
testcase_08 AC 60 ms
70,144 KB
testcase_09 AC 39 ms
52,224 KB
testcase_10 WA -
testcase_11 AC 74 ms
75,136 KB
testcase_12 AC 71 ms
75,136 KB
testcase_13 AC 86 ms
75,264 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 39 ms
52,352 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 39 ms
52,096 KB
testcase_29 WA -
testcase_30 AC 50 ms
60,416 KB
testcase_31 AC 63 ms
71,808 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 47 ms
59,392 KB
testcase_36 AC 38 ms
52,096 KB
testcase_37 AC 46 ms
59,136 KB
testcase_38 AC 47 ms
59,264 KB
testcase_39 AC 46 ms
60,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
V = []
W = []
for i in range(n):
    v, w = map(int, input().split())
    V.append(v)
    W.append(w)
u = int(input())
if u == 0:
    print(1)
    print(min(W)-1)
    exit()
INF = 10**18
dp = [INF]*(u+2)
dp[0] = 0
for v, w in zip(V, W):
    for i in reversed(range(u+2)):
        if i+v <= u+1:
            dp[i+v] = min(dp[i+v], dp[i]+w)
for i in reversed(range(u+1)):
    dp[i] = min(dp[i], dp[i+1])
if dp[u+1] != INF:
    print(dp[u])
    print(dp[u+1]-1)
else:
    print(dp[u])
    print('inf')
0