結果

問題 No.527 ナップサック容量問題
ユーザー flippergoflippergo
提出日時 2024-10-06 16:07:29
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,196 bytes
コンパイル時間 289 ms
コンパイル使用メモリ 81,896 KB
実行使用メモリ 85,120 KB
最終ジャッジ日時 2024-10-06 16:07:50
合計ジャッジ時間 18,988 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
68,864 KB
testcase_01 AC 88 ms
71,808 KB
testcase_02 AC 66 ms
65,792 KB
testcase_03 AC 87 ms
75,776 KB
testcase_04 AC 49 ms
62,976 KB
testcase_05 AC 334 ms
77,696 KB
testcase_06 AC 1,278 ms
84,352 KB
testcase_07 AC 764 ms
78,240 KB
testcase_08 AC 357 ms
77,952 KB
testcase_09 AC 44 ms
60,288 KB
testcase_10 TLE -
testcase_11 AC 614 ms
80,768 KB
testcase_12 AC 366 ms
78,208 KB
testcase_13 AC 1,359 ms
84,992 KB
testcase_14 AC 367 ms
78,688 KB
testcase_15 AC 436 ms
78,080 KB
testcase_16 AC 99 ms
78,208 KB
testcase_17 AC 542 ms
78,800 KB
testcase_18 AC 717 ms
81,920 KB
testcase_19 AC 107 ms
77,952 KB
testcase_20 AC 213 ms
78,336 KB
testcase_21 AC 538 ms
78,208 KB
testcase_22 AC 352 ms
78,208 KB
testcase_23 AC 482 ms
78,336 KB
testcase_24 AC 161 ms
77,796 KB
testcase_25 AC 354 ms
78,592 KB
testcase_26 AC 301 ms
78,208 KB
testcase_27 AC 388 ms
78,080 KB
testcase_28 AC 277 ms
78,464 KB
testcase_29 AC 640 ms
78,208 KB
testcase_30 AC 75 ms
66,432 KB
testcase_31 AC 224 ms
78,336 KB
testcase_32 AC 255 ms
78,080 KB
testcase_33 AC 235 ms
78,464 KB
testcase_34 AC 258 ms
78,208 KB
testcase_35 AC 818 ms
81,468 KB
testcase_36 AC 85 ms
75,136 KB
testcase_37 AC 287 ms
78,208 KB
testcase_38 AC 515 ms
78,364 KB
testcase_39 AC 695 ms
79,416 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
while high-low>1:
    mid = (high+low)//2
    dp = [[0 for _ in range(mid+1)] for _ in range(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
        dp = [[0 for _ in range(mid+1)] for _ in range(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