結果

問題 No.527 ナップサック容量問題
ユーザー maspymaspy
提出日時 2020-02-03 12:32:01
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 481 ms / 2,000 ms
コード長 482 bytes
コンパイル時間 108 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,724 KB
最終ジャッジ日時 2024-09-18 21:40:26
合計ジャッジ時間 21,167 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 462 ms
44,584 KB
testcase_01 AC 448 ms
44,076 KB
testcase_02 AC 456 ms
44,080 KB
testcase_03 AC 454 ms
44,328 KB
testcase_04 AC 449 ms
44,468 KB
testcase_05 AC 468 ms
44,080 KB
testcase_06 AC 457 ms
44,072 KB
testcase_07 AC 459 ms
44,204 KB
testcase_08 AC 452 ms
44,584 KB
testcase_09 AC 443 ms
44,076 KB
testcase_10 AC 464 ms
44,072 KB
testcase_11 AC 480 ms
44,456 KB
testcase_12 AC 459 ms
44,724 KB
testcase_13 AC 468 ms
44,460 KB
testcase_14 AC 453 ms
44,204 KB
testcase_15 AC 454 ms
44,072 KB
testcase_16 AC 435 ms
44,072 KB
testcase_17 AC 448 ms
44,196 KB
testcase_18 AC 446 ms
44,208 KB
testcase_19 AC 442 ms
44,324 KB
testcase_20 AC 443 ms
44,196 KB
testcase_21 AC 453 ms
44,532 KB
testcase_22 AC 468 ms
44,328 KB
testcase_23 AC 481 ms
44,200 KB
testcase_24 AC 471 ms
44,208 KB
testcase_25 AC 466 ms
44,460 KB
testcase_26 AC 461 ms
44,204 KB
testcase_27 AC 461 ms
44,200 KB
testcase_28 AC 473 ms
44,336 KB
testcase_29 AC 472 ms
44,436 KB
testcase_30 AC 458 ms
44,328 KB
testcase_31 AC 454 ms
44,324 KB
testcase_32 AC 474 ms
44,452 KB
testcase_33 AC 473 ms
44,200 KB
testcase_34 AC 477 ms
44,196 KB
testcase_35 AC 472 ms
44,204 KB
testcase_36 AC 464 ms
44,468 KB
testcase_37 AC 469 ms
44,204 KB
testcase_38 AC 464 ms
44,200 KB
testcase_39 AC 479 ms
44,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines

import numpy as np

*data, = map(int,read().split())
N = data[0]
V = data[1:1+N+N:2]
W = data[2:1+N+N:2]
v_max = data[-1]

# w -> v
dp = np.zeros(10**5+1, np.int64)
for v,w in zip(V,W):
    np.maximum(dp[w:], dp[:-w] + v, out=dp[w:])

np.maximum.accumulate(dp, out=dp)

I = np.where(dp == v_max)[0]
print(max(1, I[0]))
print('inf' if dp[-1] == v_max else I[-1])    
0