結果

問題 No.527 ナップサック容量問題
ユーザー flippergoflippergo
提出日時 2024-10-06 16:01:03
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,168 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 81,812 KB
実行使用メモリ 308,760 KB
最終ジャッジ日時 2024-10-06 16:01:27
合計ジャッジ時間 23,020 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
71,952 KB
testcase_01 AC 81 ms
76,816 KB
testcase_02 AC 58 ms
67,888 KB
testcase_03 AC 90 ms
79,820 KB
testcase_04 AC 48 ms
63,720 KB
testcase_05 AC 474 ms
181,264 KB
testcase_06 AC 1,645 ms
285,268 KB
testcase_07 AC 911 ms
187,096 KB
testcase_08 AC 416 ms
108,964 KB
testcase_09 AC 41 ms
61,328 KB
testcase_10 TLE -
testcase_11 AC 782 ms
258,432 KB
testcase_12 AC 502 ms
192,892 KB
testcase_13 AC 1,694 ms
308,760 KB
testcase_14 AC 436 ms
118,516 KB
testcase_15 AC 500 ms
136,012 KB
testcase_16 AC 100 ms
80,672 KB
testcase_17 AC 661 ms
161,020 KB
testcase_18 AC 861 ms
222,188 KB
testcase_19 AC 105 ms
81,664 KB
testcase_20 AC 242 ms
110,156 KB
testcase_21 AC 666 ms
211,568 KB
testcase_22 AC 453 ms
156,212 KB
testcase_23 AC 645 ms
201,188 KB
testcase_24 AC 186 ms
95,812 KB
testcase_25 AC 429 ms
153,420 KB
testcase_26 AC 401 ms
144,044 KB
testcase_27 AC 454 ms
146,292 KB
testcase_28 AC 343 ms
132,996 KB
testcase_29 AC 753 ms
203,216 KB
testcase_30 AC 77 ms
72,192 KB
testcase_31 AC 275 ms
119,748 KB
testcase_32 AC 351 ms
133,352 KB
testcase_33 AC 301 ms
121,880 KB
testcase_34 AC 346 ms
139,264 KB
testcase_35 AC 1,085 ms
232,936 KB
testcase_36 AC 83 ms
78,084 KB
testcase_37 AC 360 ms
122,120 KB
testcase_38 AC 629 ms
150,952 KB
testcase_39 AC 850 ms
181,032 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(N+1)]
    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][j] = dp[i-1][j]
            if j>=A[i][1]:
                dp[i][j] = max(dp[i][j],dp[i-1][j-A[i][1]]+A[i][0])
    if dp[N][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(N+1)]
        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][j] = dp[i-1][j]
                if j>=A[i][1]:
                    dp[i][j] = max(dp[i][j],dp[i-1][j-A[i][1]]+A[i][0])
        if dp[N][mid]>V:
            high = mid
        else:
            low = mid
    V_high = low
print(V_low)
print(V_high)
0