結果

問題 No.527 ナップサック容量問題
ユーザー lllllll88938494lllllll88938494
提出日時 2022-09-15 13:14:22
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 837 bytes
コンパイル時間 696 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 102,400 KB
最終ジャッジ日時 2024-05-09 14:58:35
合計ジャッジ時間 5,457 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,096 KB
testcase_01 AC 37 ms
57,344 KB
testcase_02 AC 34 ms
51,584 KB
testcase_03 WA -
testcase_04 AC 34 ms
52,352 KB
testcase_05 AC 71 ms
69,888 KB
testcase_06 AC 144 ms
95,488 KB
testcase_07 AC 113 ms
83,328 KB
testcase_08 AC 62 ms
68,736 KB
testcase_09 AC 34 ms
51,584 KB
testcase_10 AC 146 ms
94,208 KB
testcase_11 AC 96 ms
77,568 KB
testcase_12 AC 74 ms
70,784 KB
testcase_13 AC 147 ms
97,664 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 38 ms
57,984 KB
testcase_17 AC 72 ms
71,808 KB
testcase_18 WA -
testcase_19 AC 39 ms
58,240 KB
testcase_20 AC 66 ms
69,504 KB
testcase_21 AC 178 ms
102,272 KB
testcase_22 AC 109 ms
83,328 KB
testcase_23 AC 143 ms
95,872 KB
testcase_24 AC 54 ms
65,664 KB
testcase_25 AC 97 ms
79,360 KB
testcase_26 AC 92 ms
77,184 KB
testcase_27 AC 95 ms
78,464 KB
testcase_28 AC 93 ms
76,672 KB
testcase_29 AC 180 ms
102,400 KB
testcase_30 AC 37 ms
52,096 KB
testcase_31 AC 52 ms
63,232 KB
testcase_32 AC 56 ms
66,432 KB
testcase_33 AC 49 ms
64,384 KB
testcase_34 AC 52 ms
65,152 KB
testcase_35 WA -
testcase_36 AC 39 ms
58,624 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
m=[list(map(int,input().split())) for i in range(n)]
maxw=0
for i in range(n):
    maxw += m[i][1]
v = int(input())
dp=[[-1]*(maxw+1) for i in range(n+1)]
dp[0][0] = 0

for i in range(n):
    for j in range(maxw+1):
        if dp[i%2][j] == -1:
            continue
        dp[(i+1)%2][j] = max(dp[(i+1)%2][j],dp[i%2][j])
        if j + m[i][1] <= len(dp[0])-1:
            dp[(i+1)%2][j+m[i][1]] = max(dp[(i+1)%2][j+m[i][1]],dp[i%2][j] + m[i][0])

ans=[]
for i in range(maxw+1):
    if dp[n%2][i] == v:
        while dp[n%2][i] <= v:
            ans.append(i)
            i+=1
            if i >= maxw+1:
                break
# print(dp[n%2])
                
if dp[n%2][-1] == v:
    print(maxw)
    print('inf')
else:
    print(1 if ans[0] == 0 else ans[0]  )
    print(ans[-1])
                
            
    
    
0