結果

問題 No.2686 商品券の使い道
ユーザー mkawa2mkawa2
提出日時 2024-11-18 23:29:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 212 ms / 3,000 ms
コード長 1,258 bytes
コンパイル時間 595 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 90,256 KB
最終ジャッジ日時 2024-11-18 23:29:56
合計ジャッジ時間 8,524 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,736 KB
testcase_01 AC 39 ms
52,480 KB
testcase_02 AC 80 ms
69,376 KB
testcase_03 AC 83 ms
69,168 KB
testcase_04 AC 86 ms
70,656 KB
testcase_05 AC 81 ms
69,376 KB
testcase_06 AC 83 ms
69,376 KB
testcase_07 AC 85 ms
69,632 KB
testcase_08 AC 85 ms
69,632 KB
testcase_09 AC 82 ms
69,376 KB
testcase_10 AC 83 ms
69,504 KB
testcase_11 AC 90 ms
70,528 KB
testcase_12 AC 89 ms
70,656 KB
testcase_13 AC 85 ms
69,376 KB
testcase_14 AC 83 ms
70,524 KB
testcase_15 AC 84 ms
70,956 KB
testcase_16 AC 85 ms
71,124 KB
testcase_17 AC 86 ms
71,084 KB
testcase_18 AC 85 ms
71,168 KB
testcase_19 AC 91 ms
71,148 KB
testcase_20 AC 84 ms
68,920 KB
testcase_21 AC 82 ms
71,148 KB
testcase_22 AC 84 ms
71,532 KB
testcase_23 AC 80 ms
70,228 KB
testcase_24 AC 86 ms
71,504 KB
testcase_25 AC 82 ms
70,496 KB
testcase_26 AC 85 ms
71,348 KB
testcase_27 AC 84 ms
70,740 KB
testcase_28 AC 87 ms
70,544 KB
testcase_29 AC 187 ms
89,472 KB
testcase_30 AC 198 ms
88,716 KB
testcase_31 AC 184 ms
88,968 KB
testcase_32 AC 192 ms
89,560 KB
testcase_33 AC 189 ms
88,584 KB
testcase_34 AC 178 ms
88,856 KB
testcase_35 AC 181 ms
89,056 KB
testcase_36 AC 178 ms
90,244 KB
testcase_37 AC 200 ms
89,560 KB
testcase_38 AC 196 ms
89,648 KB
testcase_39 AC 197 ms
89,384 KB
testcase_40 AC 186 ms
89,588 KB
testcase_41 AC 173 ms
86,964 KB
testcase_42 AC 185 ms
89,300 KB
testcase_43 AC 207 ms
89,652 KB
testcase_44 AC 212 ms
89,308 KB
testcase_45 AC 188 ms
90,256 KB
testcase_46 AC 193 ms
89,348 KB
evil_random20_1.txt AC 176 ms
88,336 KB
evil_random20_2.txt AC 173 ms
87,964 KB
evil_random20_3.txt AC 168 ms
87,572 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(200005)
# sys.set_int_max_str_digits(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()

dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
# inf = -1-(-1 << 31)
inf = -1-(-1 << 62)

# md = 10**9+7
md = 998244353

n,m,q=LI()
pv=LLI(n)

sp=sv=0
for p,v in pv:
    sp+=p
    sv+=v

pp=[0]*(1<<n)
vv=[0]*(1<<n)
dp=[-inf]*(1<<n)
if sp<=q:dp[0]=sv
for s in range(1,1<<n):
    i=s.bit_length()-1
    p,v=pv[i]
    pp[s]=pp[s^1<<i]+p
    vv[s]=vv[s^1<<i]+v
    if sp-pp[s]<=q:dp[s]=sv-vv[s]

k=1
for _ in range(n):
    for s in range(1<<n):
        if s&k:
            ns=s^k
            dp[ns]=max(dp[ns],dp[s])
    k<<=1

ans=0
for s in range(1<<n):
    if pp[s]<=m:
        ans=max(ans,vv[s]+dp[s])

print(ans)
0