結果

問題 No.2686 商品券の使い道
ユーザー mymelochanmymelochan
提出日時 2024-03-20 22:44:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 931 ms / 3,000 ms
コード長 1,063 bytes
コンパイル時間 690 ms
コンパイル使用メモリ 82,696 KB
実行使用メモリ 84,644 KB
最終ジャッジ日時 2024-09-30 08:51:13
合計ジャッジ時間 27,362 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,400 KB
testcase_01 AC 40 ms
54,016 KB
testcase_02 AC 225 ms
78,464 KB
testcase_03 AC 230 ms
78,208 KB
testcase_04 AC 231 ms
78,336 KB
testcase_05 AC 229 ms
78,208 KB
testcase_06 AC 229 ms
78,204 KB
testcase_07 AC 220 ms
78,080 KB
testcase_08 AC 228 ms
78,208 KB
testcase_09 AC 229 ms
78,464 KB
testcase_10 AC 227 ms
78,336 KB
testcase_11 AC 226 ms
78,080 KB
testcase_12 AC 230 ms
78,336 KB
testcase_13 AC 236 ms
78,208 KB
testcase_14 AC 226 ms
78,336 KB
testcase_15 AC 232 ms
78,336 KB
testcase_16 AC 229 ms
78,208 KB
testcase_17 AC 228 ms
78,204 KB
testcase_18 AC 226 ms
78,352 KB
testcase_19 AC 231 ms
78,336 KB
testcase_20 AC 226 ms
78,080 KB
testcase_21 AC 231 ms
78,396 KB
testcase_22 AC 230 ms
78,336 KB
testcase_23 AC 233 ms
78,208 KB
testcase_24 AC 232 ms
78,208 KB
testcase_25 AC 237 ms
78,336 KB
testcase_26 AC 227 ms
78,208 KB
testcase_27 AC 234 ms
78,276 KB
testcase_28 AC 226 ms
78,296 KB
testcase_29 AC 921 ms
84,352 KB
testcase_30 AC 913 ms
84,608 KB
testcase_31 AC 906 ms
84,480 KB
testcase_32 AC 891 ms
84,644 KB
testcase_33 AC 911 ms
84,360 KB
testcase_34 AC 924 ms
84,480 KB
testcase_35 AC 905 ms
84,480 KB
testcase_36 AC 913 ms
84,480 KB
testcase_37 AC 907 ms
84,480 KB
testcase_38 AC 913 ms
84,352 KB
testcase_39 AC 918 ms
84,516 KB
testcase_40 AC 925 ms
84,352 KB
testcase_41 AC 931 ms
84,384 KB
testcase_42 AC 904 ms
84,404 KB
testcase_43 AC 900 ms
84,352 KB
testcase_44 AC 891 ms
84,608 KB
testcase_45 AC 899 ms
84,608 KB
testcase_46 AC 895 ms
84,224 KB
evil_random20_1.txt AC 864 ms
84,352 KB
evil_random20_2.txt AC 895 ms
84,348 KB
evil_random20_3.txt AC 714 ms
84,524 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#############################################################

import sys
sys.setrecursionlimit(10**7)

from heapq import heappop,heappush
from collections import deque,defaultdict,Counter
from bisect import bisect_left, bisect_right
from itertools import product,combinations,permutations

ipt = sys.stdin.readline

def iin():
    return int(ipt())
def lmin():
    return list(map(int,ipt().split()))

MOD = 998244353
#############################################################

N,M,Q = lmin()
L = [lmin() for _ in range(N)]
pre = [0]*(1<<N)
for i in range(1,1<<N):
    v = 0
    p = 0
    for j in range(N):
        if i&(1<<j):
            v += L[j][1]
            p += L[j][0]
    
    if p <= Q:
        pre[i] = v
    
    for j in range(N):
        if not i&(1<<j):
            pre[i^(1<<j)] = max(pre[i^(1<<j)], pre[i])


ans = 0
for i in range(1<<N):
    v,p = 0,0
    for j in range(N):
        if i&(1<<j):
            v += L[j][1]
            p += L[j][0]
    
    if p <= M:
        c = ((1<<N)-1)^i
        ans = max(ans,v+pre[c])

print(ans)
    
0