結果

問題 No.527 ナップサック容量問題
ユーザー flippergoflippergo
提出日時 2024-10-06 16:16:11
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,135 bytes
コンパイル時間 244 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 78,464 KB
最終ジャッジ日時 2024-10-06 16:16:27
合計ジャッジ時間 14,809 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
67,072 KB
testcase_01 AC 78 ms
69,504 KB
testcase_02 AC 59 ms
65,920 KB
testcase_03 AC 85 ms
73,088 KB
testcase_04 AC 49 ms
60,928 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 45 ms
60,544 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 407 ms
77,952 KB
testcase_16 AC 97 ms
77,824 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 341 ms
75,520 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 269 ms
76,032 KB
testcase_29 WA -
testcase_30 AC 74 ms
66,304 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 81 ms
73,088 KB
testcase_37 AC 285 ms
77,808 KB
testcase_38 WA -
testcase_39 AC 686 ms
77,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = [0]+[list(map(int,input().split())) for _ in range(N)]
Vmax = 0
for i in range(1,N+1):
    Vmax += A[i][0]
V = int(input())
high = 10**5+1
low = 0
dp = [[0 for _ in range(10**5+1)] for _ in range(2)]
while high-low>1:
    mid = (high+low)//2
    for j in range(A[1][1],mid+1):
        dp[1][j] = A[1][0]
    for i in range(2,N+1):
        for j in range(mid+1):
            dp[i%2][j] = dp[(i-1)%2][j]
            if j>=A[i][1]:
                dp[i%2][j] = max(dp[i%2][j],dp[(i-1)%2][j-A[i][1]]+A[i][0])
    if dp[N%2][mid]>=V:
        high = mid
    else:
        low = mid
V_low = high
V_high = "inf"
if V<Vmax:
    high = 10**5
    low = 0
    while high-low>1:
        mid = (high+low)//2
        for j in range(A[1][1],mid+1):
            dp[1][j] = A[1][0]
        for i in range(2,N+1):
            for j in range(mid+1):
                dp[i%2][j] = dp[(i-1)%2][j]
                if j>=A[i][1]:
                    dp[i%2][j] = max(dp[i%2][j],dp[(i-1)%2][j-A[i][1]]+A[i][0])
        if dp[N%2][mid]>V:
            high = mid
        else:
            low = mid
    V_high = low
print(V_low)
print(V_high)
0