結果

問題 No.527 ナップサック容量問題
ユーザー hedwig100hedwig100
提出日時 2020-05-26 20:17:51
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 556 ms / 2,000 ms
コード長 441 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 45,148 KB
最終ジャッジ日時 2024-10-13 02:58:09
合計ジャッジ時間 24,604 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 527 ms
44,776 KB
testcase_01 AC 525 ms
44,080 KB
testcase_02 AC 531 ms
44,768 KB
testcase_03 AC 530 ms
44,652 KB
testcase_04 AC 528 ms
44,340 KB
testcase_05 AC 540 ms
44,904 KB
testcase_06 AC 555 ms
44,520 KB
testcase_07 AC 541 ms
44,636 KB
testcase_08 AC 536 ms
44,656 KB
testcase_09 AC 532 ms
44,328 KB
testcase_10 AC 547 ms
44,636 KB
testcase_11 AC 547 ms
45,024 KB
testcase_12 AC 540 ms
44,516 KB
testcase_13 AC 556 ms
44,776 KB
testcase_14 AC 543 ms
44,636 KB
testcase_15 AC 543 ms
44,924 KB
testcase_16 AC 527 ms
44,776 KB
testcase_17 AC 538 ms
44,780 KB
testcase_18 AC 544 ms
44,764 KB
testcase_19 AC 530 ms
44,776 KB
testcase_20 AC 535 ms
44,516 KB
testcase_21 AC 552 ms
45,016 KB
testcase_22 AC 547 ms
44,760 KB
testcase_23 AC 551 ms
44,776 KB
testcase_24 AC 531 ms
45,148 KB
testcase_25 AC 522 ms
43,828 KB
testcase_26 AC 542 ms
44,768 KB
testcase_27 AC 545 ms
44,768 KB
testcase_28 AC 528 ms
43,820 KB
testcase_29 AC 554 ms
44,768 KB
testcase_30 AC 527 ms
44,636 KB
testcase_31 AC 540 ms
44,512 KB
testcase_32 AC 541 ms
44,520 KB
testcase_33 AC 539 ms
45,020 KB
testcase_34 AC 545 ms
44,388 KB
testcase_35 AC 537 ms
44,520 KB
testcase_36 AC 520 ms
44,464 KB
testcase_37 AC 534 ms
44,648 KB
testcase_38 AC 537 ms
44,764 KB
testcase_39 AC 540 ms
44,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
INF = 10 ** 10

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

if V == 0:
    ans = 1,min(w for v,w in item) - 1
else:
    dp = np.zeros(100005,np.int64)
    dp[1:] = INF
    for v,w in item:
        dp[v:] = np.minimum(dp[v:],dp[:-v] + w)

    X = dp[V + 1:].min()
    if X == INF:
        ans = dp[V],'inf'
    else:
        ans = dp[V],X - 1
print('\n'.join(map(str,ans)))
0