結果

問題 No.527 ナップサック容量問題
ユーザー flippergoflippergo
提出日時 2024-10-06 18:10:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 937 ms / 2,000 ms
コード長 840 bytes
コンパイル時間 248 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 78,336 KB
最終ジャッジ日時 2024-10-06 18:10:48
合計ジャッジ時間 10,709 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
64,000 KB
testcase_01 AC 61 ms
64,768 KB
testcase_02 AC 53 ms
62,336 KB
testcase_03 AC 71 ms
66,688 KB
testcase_04 AC 52 ms
61,696 KB
testcase_05 AC 191 ms
68,992 KB
testcase_06 AC 647 ms
72,064 KB
testcase_07 AC 382 ms
73,600 KB
testcase_08 AC 158 ms
68,480 KB
testcase_09 AC 47 ms
60,672 KB
testcase_10 AC 937 ms
78,336 KB
testcase_11 AC 335 ms
69,888 KB
testcase_12 AC 206 ms
68,864 KB
testcase_13 AC 671 ms
72,192 KB
testcase_14 AC 223 ms
72,576 KB
testcase_15 AC 227 ms
72,448 KB
testcase_16 AC 70 ms
69,248 KB
testcase_17 AC 284 ms
74,240 KB
testcase_18 AC 361 ms
75,264 KB
testcase_19 AC 99 ms
69,376 KB
testcase_20 AC 122 ms
71,168 KB
testcase_21 AC 290 ms
77,448 KB
testcase_22 AC 195 ms
72,064 KB
testcase_23 AC 262 ms
73,856 KB
testcase_24 AC 101 ms
72,064 KB
testcase_25 AC 207 ms
69,120 KB
testcase_26 AC 171 ms
69,760 KB
testcase_27 AC 174 ms
69,760 KB
testcase_28 AC 164 ms
71,040 KB
testcase_29 AC 263 ms
71,296 KB
testcase_30 AC 59 ms
63,104 KB
testcase_31 AC 128 ms
71,680 KB
testcase_32 AC 167 ms
72,448 KB
testcase_33 AC 135 ms
71,680 KB
testcase_34 AC 147 ms
72,064 KB
testcase_35 AC 432 ms
74,752 KB
testcase_36 AC 63 ms
66,664 KB
testcase_37 AC 163 ms
71,936 KB
testcase_38 AC 293 ms
72,704 KB
testcase_39 AC 362 ms
74,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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