結果

問題 No.527 ナップサック容量問題
ユーザー H3PO4H3PO4
提出日時 2020-09-14 09:36:21
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 618 bytes
コンパイル時間 309 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 45,304 KB
最終ジャッジ日時 2024-06-22 00:38:41
合計ジャッジ時間 26,446 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 546 ms
44,904 KB
testcase_01 AC 537 ms
44,640 KB
testcase_02 AC 529 ms
44,528 KB
testcase_03 WA -
testcase_04 AC 526 ms
44,604 KB
testcase_05 AC 549 ms
44,644 KB
testcase_06 AC 561 ms
44,644 KB
testcase_07 AC 559 ms
44,528 KB
testcase_08 AC 542 ms
44,908 KB
testcase_09 AC 528 ms
44,468 KB
testcase_10 AC 561 ms
44,532 KB
testcase_11 AC 566 ms
45,024 KB
testcase_12 AC 560 ms
44,528 KB
testcase_13 AC 577 ms
45,028 KB
testcase_14 AC 559 ms
45,028 KB
testcase_15 AC 538 ms
45,028 KB
testcase_16 AC 537 ms
45,036 KB
testcase_17 AC 558 ms
44,900 KB
testcase_18 AC 557 ms
44,660 KB
testcase_19 WA -
testcase_20 AC 544 ms
45,044 KB
testcase_21 AC 571 ms
45,044 KB
testcase_22 AC 554 ms
45,032 KB
testcase_23 AC 568 ms
44,644 KB
testcase_24 AC 546 ms
44,652 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 543 ms
45,036 KB
testcase_28 WA -
testcase_29 AC 553 ms
45,020 KB
testcase_30 AC 530 ms
44,772 KB
testcase_31 AC 540 ms
44,404 KB
testcase_32 AC 540 ms
45,160 KB
testcase_33 AC 537 ms
44,640 KB
testcase_34 AC 541 ms
44,636 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

N = int(input())
goods = [tuple(map(int, input().split())) for _ in range(N)]
V = int(input())

MAX = 100000
dp = np.zeros(MAX + 1, dtype=int)
ans_min = MAX + 1
ans_max = 0
for v, w in goods:
    new_dp = dp.copy()
    new_dp[w:] = np.maximum(dp[w:], dp[:-w] + v)
    dp = new_dp

    l = np.searchsorted(dp, V, side='left')
    if 0 <= l <= MAX and dp[l] == V:
        ans_min = min(ans_min, l)

    r = np.searchsorted(dp, V, side='right') - 1
    if 0 <= r <= MAX and dp[r] == V:
        ans_max = max(ans_max, r)

print(ans_min if ans_min > 0 else 1)
print(ans_max if ans_max < MAX else 'inf')
0