結果

問題 No.527 ナップサック容量問題
ユーザー rpy3cpprpy3cpp
提出日時 2017-06-09 22:51:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 87 ms / 2,000 ms
コード長 798 bytes
コンパイル時間 282 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 75,368 KB
最終ジャッジ日時 2024-09-22 16:01:07
合計ジャッジ時間 3,623 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,092 KB
testcase_01 AC 40 ms
58,308 KB
testcase_02 AC 38 ms
53,376 KB
testcase_03 AC 41 ms
57,504 KB
testcase_04 AC 40 ms
52,676 KB
testcase_05 AC 54 ms
66,068 KB
testcase_06 AC 83 ms
75,160 KB
testcase_07 AC 68 ms
75,304 KB
testcase_08 AC 49 ms
63,596 KB
testcase_09 AC 37 ms
52,816 KB
testcase_10 AC 79 ms
75,196 KB
testcase_11 AC 59 ms
72,652 KB
testcase_12 AC 53 ms
66,304 KB
testcase_13 AC 84 ms
75,108 KB
testcase_14 AC 50 ms
62,644 KB
testcase_15 AC 57 ms
69,724 KB
testcase_16 AC 41 ms
57,808 KB
testcase_17 AC 50 ms
65,244 KB
testcase_18 AC 55 ms
67,132 KB
testcase_19 AC 41 ms
58,020 KB
testcase_20 AC 47 ms
62,664 KB
testcase_21 AC 86 ms
75,368 KB
testcase_22 AC 69 ms
75,088 KB
testcase_23 AC 79 ms
75,160 KB
testcase_24 AC 45 ms
60,584 KB
testcase_25 AC 61 ms
73,336 KB
testcase_26 AC 59 ms
72,108 KB
testcase_27 AC 60 ms
72,264 KB
testcase_28 AC 57 ms
68,688 KB
testcase_29 AC 87 ms
75,212 KB
testcase_30 AC 38 ms
52,988 KB
testcase_31 AC 47 ms
60,444 KB
testcase_32 AC 49 ms
60,392 KB
testcase_33 AC 49 ms
60,176 KB
testcase_34 AC 46 ms
60,452 KB
testcase_35 AC 60 ms
71,056 KB
testcase_36 AC 41 ms
58,540 KB
testcase_37 AC 53 ms
66,700 KB
testcase_38 AC 56 ms
68,816 KB
testcase_39 AC 56 ms
66,828 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def read_data():
    N = int(input())
    vs = []
    ws = []
    for _ in range(N):
        v, w = map(int, input().split())
        vs.append(v)
        ws.append(w)
    V = int(input())
    return N, vs, ws, V

def solve(N, vs, ws, V):
    W = sum(ws)
    dp = [0] * (W + 1)
    for v, w in zip(vs, ws):
        for imw in range(W - w, 0, -1):
            if dp[imw]:
                newdp = dp[imw] + v
                if newdp > dp[imw + w]: dp[imw + w] = newdp
        dp[w] = max(dp[w], v)
    minw = 1
    maxw = 'inf'
    for i in range(1, W + 1):
        if dp[i] == V:
            minw = i
            break
    for j in range(i + 1, W + 1):
        if dp[j] > V:
            maxw = j - 1
            break
    print(minw)
    print(maxw)

N, vs, ws, V = read_data()
solve(N, vs, ws, V)
0