結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,096 KB
testcase_01 AC 41 ms
58,240 KB
testcase_02 AC 36 ms
52,096 KB
testcase_03 WA -
testcase_04 AC 36 ms
52,352 KB
testcase_05 AC 76 ms
70,656 KB
testcase_06 AC 149 ms
95,104 KB
testcase_07 AC 121 ms
83,200 KB
testcase_08 AC 66 ms
68,096 KB
testcase_09 AC 36 ms
52,352 KB
testcase_10 AC 158 ms
94,848 KB
testcase_11 AC 99 ms
77,160 KB
testcase_12 AC 78 ms
71,296 KB
testcase_13 AC 163 ms
97,408 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 41 ms
58,240 KB
testcase_17 AC 74 ms
72,064 KB
testcase_18 WA -
testcase_19 AC 43 ms
58,368 KB
testcase_20 AC 65 ms
70,272 KB
testcase_21 AC 190 ms
102,272 KB
testcase_22 AC 113 ms
84,352 KB
testcase_23 AC 162 ms
96,128 KB
testcase_24 AC 56 ms
65,536 KB
testcase_25 AC 101 ms
80,256 KB
testcase_26 AC 98 ms
77,312 KB
testcase_27 AC 96 ms
78,336 KB
testcase_28 AC 93 ms
76,672 KB
testcase_29 AC 177 ms
102,784 KB
testcase_30 AC 36 ms
52,224 KB
testcase_31 AC 49 ms
64,000 KB
testcase_32 AC 62 ms
66,688 KB
testcase_33 AC 54 ms
64,000 KB
testcase_34 AC 56 ms
65,664 KB
testcase_35 WA -
testcase_36 AC 49 ms
58,368 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