結果

問題 No.527 ナップサック容量問題
ユーザー nanaenanae
提出日時 2017-06-09 22:36:35
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 738 bytes
コンパイル時間 244 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 21,788 KB
最終ジャッジ日時 2024-09-22 15:26:43
合計ジャッジ時間 6,107 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
18,460 KB
testcase_01 AC 181 ms
14,592 KB
testcase_02 AC 98 ms
11,392 KB
testcase_03 AC 184 ms
14,592 KB
testcase_04 AC 69 ms
11,392 KB
testcase_05 AC 1,510 ms
14,848 KB
testcase_06 TLE -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

lim = 10**5

def solve():
    n = int(input())

    v = [0] * n
    w = [0] * n

    for i in range(n):
        vi, wi = map(int, input().split())
        v[i] = vi
        w[i] = wi

    V = int(input())

    dp = [0] * (lim + 1)

    for i in range(n):
        for j in range(lim, w[i] - 1, -1):
            dp[j] = max(dp[j], dp[j - w[i]] + v[i])

    min_a = lim + 1
    max_a = 0

    for i in range(lim + 1):
        if dp[i] == V:
            min_a = i
            break

    for i in range(lim, -1, -1):
        if dp[i] == V:
            max_a = i
            break

    print(min_a if min_a > 0 else 1)

    if sum(v) == V:
        print('inf')
    else:
        print(max_a)


if __name__ == '__main__':
    solve()
0