結果

問題 No.527 ナップサック容量問題
ユーザー brthyyjpbrthyyjp
提出日時 2022-03-02 13:30:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 539 bytes
コンパイル時間 231 ms
コンパイル使用メモリ 81,408 KB
実行使用メモリ 76,288 KB
最終ジャッジ日時 2024-07-16 06:45:18
合計ジャッジ時間 4,559 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
66,176 KB
testcase_01 AC 38 ms
51,712 KB
testcase_02 AC 50 ms
64,128 KB
testcase_03 AC 56 ms
68,864 KB
testcase_04 AC 38 ms
52,096 KB
testcase_05 AC 83 ms
75,520 KB
testcase_06 AC 107 ms
75,520 KB
testcase_07 AC 100 ms
75,776 KB
testcase_08 AC 81 ms
75,776 KB
testcase_09 AC 47 ms
62,720 KB
testcase_10 AC 112 ms
76,068 KB
testcase_11 AC 97 ms
75,520 KB
testcase_12 AC 87 ms
75,904 KB
testcase_13 AC 116 ms
75,520 KB
testcase_14 AC 80 ms
75,648 KB
testcase_15 AC 91 ms
75,648 KB
testcase_16 AC 57 ms
68,992 KB
testcase_17 AC 86 ms
75,520 KB
testcase_18 AC 91 ms
75,648 KB
testcase_19 AC 61 ms
71,168 KB
testcase_20 AC 84 ms
75,520 KB
testcase_21 AC 124 ms
75,520 KB
testcase_22 AC 101 ms
75,700 KB
testcase_23 AC 121 ms
75,648 KB
testcase_24 AC 73 ms
75,648 KB
testcase_25 AC 39 ms
52,096 KB
testcase_26 AC 95 ms
75,648 KB
testcase_27 AC 98 ms
75,904 KB
testcase_28 AC 39 ms
51,968 KB
testcase_29 AC 124 ms
75,904 KB
testcase_30 AC 68 ms
75,392 KB
testcase_31 AC 87 ms
76,288 KB
testcase_32 AC 94 ms
75,904 KB
testcase_33 AC 90 ms
75,904 KB
testcase_34 AC 94 ms
75,648 KB
testcase_35 AC 91 ms
75,776 KB
testcase_36 AC 38 ms
51,712 KB
testcase_37 AC 83 ms
75,904 KB
testcase_38 AC 87 ms
75,520 KB
testcase_39 AC 88 ms
75,520 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
maxv = 10**5+1
dp = [INF]*(maxv+1)
dp[0] = 0
for v, w in zip(V, W):
    for i in reversed(range(maxv)):
        if i+v <= maxv:
            dp[i+v] = min(dp[i+v], dp[i]+w)
for i in reversed(range(maxv-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