結果

問題 No.2866 yuusaan's Knapsack
ユーザー 寝癖寝癖
提出日時 2024-08-18 19:35:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 358 ms / 2,000 ms
コード長 1,048 bytes
コンパイル時間 289 ms
コンパイル使用メモリ 82,236 KB
実行使用メモリ 111,208 KB
最終ジャッジ日時 2024-09-26 14:34:39
合計ジャッジ時間 8,084 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
74,880 KB
testcase_01 AC 84 ms
75,008 KB
testcase_02 AC 77 ms
75,008 KB
testcase_03 AC 75 ms
74,880 KB
testcase_04 AC 76 ms
74,880 KB
testcase_05 AC 75 ms
75,008 KB
testcase_06 AC 313 ms
103,052 KB
testcase_07 AC 262 ms
99,740 KB
testcase_08 AC 335 ms
109,448 KB
testcase_09 AC 291 ms
106,052 KB
testcase_10 AC 266 ms
95,404 KB
testcase_11 AC 231 ms
96,116 KB
testcase_12 AC 269 ms
102,144 KB
testcase_13 AC 242 ms
102,268 KB
testcase_14 AC 259 ms
100,260 KB
testcase_15 AC 286 ms
100,984 KB
testcase_16 AC 277 ms
99,972 KB
testcase_17 AC 334 ms
110,520 KB
testcase_18 AC 238 ms
96,044 KB
testcase_19 AC 338 ms
105,688 KB
testcase_20 AC 309 ms
106,208 KB
testcase_21 AC 327 ms
106,720 KB
testcase_22 AC 287 ms
101,144 KB
testcase_23 AC 358 ms
111,208 KB
testcase_24 AC 267 ms
95,300 KB
testcase_25 AC 327 ms
109,368 KB
testcase_26 AC 93 ms
80,512 KB
testcase_27 AC 75 ms
74,880 KB
testcase_28 AC 331 ms
104,644 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from dataclasses import dataclass
from collections import defaultdict

N, W = map(int, input().split())
v, w = map(list, zip(*[map(int, input().split()) for _ in range(N)]))

# 重さが小さい順にソート
vw = sorted(zip(v, w), key=lambda x: x[1])
v, w = map(list, zip(*vw))

@dataclass
class Data:
    max: int
    cnt: int
    def __add__(self, other):
        if self.max < other.max:
            return other
        elif self.max > other.max:
            return self
        else:
            return Data(self.max, (self.cnt + other.cnt)%998244353)
    def __repr__(self) -> str:
        return f"({self.max}, {self.cnt})"

M = 20001
inf = 10**18
now = defaultdict(lambda: Data(-inf, 0))
now[0] = Data(0, 1)

for i in range(N):
    nxt = defaultdict(lambda: Data(-inf, 0))
    for j in now.keys():
        # 使う場合
        if j+w[i] <= W:
            nxt[j+w[i]] += Data(now[j].max+v[i], now[j].cnt)
        # 使わない場合
        nxt[j] += now[j]
    now = nxt

ans = sum(now.values(), Data(-inf, 0))
print(ans.max, ans.cnt)
0