結果

問題 No.626 Randomized 01 Knapsack
ユーザー ああいいああいい
提出日時 2022-04-28 10:37:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 108 ms / 2,000 ms
コード長 1,368 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 81,248 KB
最終ジャッジ日時 2024-06-28 07:54:06
合計ジャッジ時間 2,989 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,612 KB
testcase_01 AC 41 ms
53,804 KB
testcase_02 AC 40 ms
53,828 KB
testcase_03 AC 40 ms
52,748 KB
testcase_04 AC 42 ms
53,972 KB
testcase_05 AC 42 ms
54,936 KB
testcase_06 AC 51 ms
57,904 KB
testcase_07 AC 74 ms
70,504 KB
testcase_08 AC 59 ms
64,884 KB
testcase_09 AC 84 ms
76,680 KB
testcase_10 AC 90 ms
78,648 KB
testcase_11 AC 98 ms
79,824 KB
testcase_12 AC 102 ms
81,248 KB
testcase_13 AC 65 ms
71,072 KB
testcase_14 AC 76 ms
74,908 KB
testcase_15 AC 99 ms
79,516 KB
testcase_16 AC 102 ms
79,672 KB
testcase_17 AC 102 ms
80,180 KB
testcase_18 AC 101 ms
80,028 KB
testcase_19 AC 104 ms
79,832 KB
testcase_20 AC 107 ms
80,816 KB
testcase_21 AC 66 ms
71,484 KB
testcase_22 AC 105 ms
79,076 KB
testcase_23 AC 108 ms
80,220 KB
testcase_24 AC 64 ms
70,708 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,W = map(int,input().split())
l = []
for _ in range(n):
    v,w = map(int,input().split())
    if w <= W:
        l.append((v,w))
n = len(l)
l.sort(key = lambda x:x[0] / x[1],reverse = True)

def kanwa(i,nowv,noww):
    flag = False
    for j in range(i,n):
        v,w = l[j]
        if w == W - noww:
            flag = True
        if w < W - noww:
            nowv += v
            noww += w
        else:
            rate = (W - noww) / w
            nowv += v * rate
            noww = W
            break
    return nowv,flag

import sys
sys.setrecursionlimit(10 ** 8)
zanteikai = 0
inf = 10 ** 18
def calc(i,nowv,noww):
    global zanteikai
    if i == n:
        if nowv > zanteikai:
            zanteikai = nowv
        return nowv
    kanwakai,flag = kanwa(i,nowv,noww)
    if flag:
        if kanwakai > zanteikai:
            zanteikai = kanwakai
        return int(kanwakai)
    if kanwakai < zanteikai:
        return -inf
    v,w = l[i]
    tmp = -inf
    if noww + w <= W:
        u = calc(i + 1,nowv + v,noww + w)
        if u > tmp:
            tmp = u
        if tmp > zanteikai:
            zanteikai = tmp
    u = calc(i + 1,nowv,noww)
    if u > tmp:
        tmp = u
    if tmp > zanteikai:
        zanteikai = tmp
    return tmp


now = 0
for v,w in l:
    if now + w <= W:
        now += w
        zanteikai += v
ans = calc(0,0,0)
print(ans)
0