結果

問題 No.1947 質より種類数
ユーザー ああいいああいい
提出日時 2022-05-21 00:13:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 765 ms / 2,000 ms
コード長 728 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 82,240 KB
実行使用メモリ 78,980 KB
最終ジャッジ日時 2024-09-20 10:38:10
合計ジャッジ時間 12,004 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
53,632 KB
testcase_01 AC 40 ms
53,632 KB
testcase_02 AC 41 ms
54,144 KB
testcase_03 AC 39 ms
53,504 KB
testcase_04 AC 167 ms
76,416 KB
testcase_05 AC 170 ms
76,264 KB
testcase_06 AC 255 ms
76,632 KB
testcase_07 AC 324 ms
76,652 KB
testcase_08 AC 187 ms
76,672 KB
testcase_09 AC 281 ms
76,788 KB
testcase_10 AC 235 ms
77,076 KB
testcase_11 AC 232 ms
76,808 KB
testcase_12 AC 335 ms
76,716 KB
testcase_13 AC 148 ms
76,880 KB
testcase_14 AC 588 ms
78,640 KB
testcase_15 AC 422 ms
77,480 KB
testcase_16 AC 700 ms
78,700 KB
testcase_17 AC 682 ms
78,276 KB
testcase_18 AC 472 ms
78,848 KB
testcase_19 AC 765 ms
78,980 KB
testcase_20 AC 471 ms
78,792 KB
testcase_21 AC 465 ms
78,712 KB
testcase_22 AC 165 ms
76,788 KB
testcase_23 AC 418 ms
78,720 KB
testcase_24 AC 222 ms
76,800 KB
testcase_25 AC 184 ms
76,484 KB
testcase_26 AC 267 ms
76,672 KB
testcase_27 AC 224 ms
76,636 KB
testcase_28 AC 197 ms
76,724 KB
testcase_29 AC 253 ms
76,928 KB
testcase_30 AC 261 ms
77,184 KB
testcase_31 AC 40 ms
54,016 KB
testcase_32 AC 39 ms
54,016 KB
testcase_33 AC 197 ms
68,480 KB
testcase_34 AC 459 ms
77,476 KB
testcase_35 AC 71 ms
74,112 KB
testcase_36 AC 132 ms
77,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,V,C = map(int,input().split())

l = []
from collections import defaultdict
d = defaultdict(list)
for _ in range(N):
    v,w = map(int,input().split())
    d[v].append(w)
dp = [0] * (V + 1)
for v,l in d.items():
    nx = dp.copy()
    l.sort(reverse = True)
    while l and l[-1] + C <= l[0]:
        l.pop()
    for i in range(1,len(l)):
        l[i] += l[i-1]
    for i in range(V + 1):
        for j in range(len(l)):
            if i + (j+1) * v > V:break
            nx[i + (j+1) * v] = max(nx[i + (j+1) * v],dp[i] + C * (j + 1) + l[j])
        for j in range(len(l) + 1,(V - i) // v + 1):
            nx[i + j * v] = max(nx[i + j * v],dp[i] + C * len(l) + l[-1] + l[0] * (j - len(l)))
        
    dp = nx
print(max(dp))
0