結果

問題 No.527 ナップサック容量問題
ユーザー takakintakakin
提出日時 2020-06-01 23:18:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 473 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 29,568 KB
最終ジャッジ日時 2024-11-22 14:45:24
合計ジャッジ時間 88,049 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 224 ms
16,640 KB
testcase_01 AC 288 ms
28,800 KB
testcase_02 AC 168 ms
25,984 KB
testcase_03 AC 292 ms
19,712 KB
testcase_04 AC 104 ms
25,856 KB
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 AC 111 ms
16,640 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 AC 290 ms
19,968 KB
testcase_17 TLE -
testcase_18 TLE -
testcase_19 AC 360 ms
29,056 KB
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 AC 1,198 ms
19,840 KB
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 AC 618 ms
19,712 KB
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 AC 237 ms
11,392 KB
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda: sys.stdin.readline().rstrip()
n=int(input())
VW=[tuple(map(int,input().split())) for _ in range(n)]
vmax=int(input())
DP=[0]*100001
for i in range(n):
  v,w=VW[i]
  for j in range(100001)[::-1]:
    if j<w:
      DP[j]=DP[j]
    else:
      DP[j]=max(DP[j],DP[j-w]+v)
ans1,ans2=-1,-1
for i in range(1,100001):
  if DP[i]==vmax:
    if ans1==-1:
      ans1=i
    ans2=i
if ans2==100000:
  print(ans1,"inf",sep="\n")
else:
  print(ans1,ans2,sep="\n")
0