結果

問題 No.2686 商品券の使い道
ユーザー hato336hato336
提出日時 2024-03-20 22:11:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 954 ms / 3,000 ms
コード長 1,097 bytes
コンパイル時間 216 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 98,432 KB
最終ジャッジ日時 2024-09-30 08:06:31
合計ジャッジ時間 28,383 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
85,760 KB
testcase_01 AC 125 ms
85,504 KB
testcase_02 AC 279 ms
91,904 KB
testcase_03 AC 275 ms
92,032 KB
testcase_04 AC 308 ms
91,904 KB
testcase_05 AC 293 ms
92,032 KB
testcase_06 AC 297 ms
91,904 KB
testcase_07 AC 278 ms
92,032 KB
testcase_08 AC 282 ms
92,032 KB
testcase_09 AC 266 ms
91,904 KB
testcase_10 AC 266 ms
91,904 KB
testcase_11 AC 271 ms
92,104 KB
testcase_12 AC 273 ms
92,032 KB
testcase_13 AC 261 ms
91,904 KB
testcase_14 AC 270 ms
92,144 KB
testcase_15 AC 274 ms
92,032 KB
testcase_16 AC 264 ms
91,904 KB
testcase_17 AC 261 ms
92,032 KB
testcase_18 AC 264 ms
92,032 KB
testcase_19 AC 263 ms
92,032 KB
testcase_20 AC 263 ms
92,032 KB
testcase_21 AC 267 ms
92,032 KB
testcase_22 AC 283 ms
91,776 KB
testcase_23 AC 260 ms
92,032 KB
testcase_24 AC 264 ms
92,288 KB
testcase_25 AC 273 ms
91,904 KB
testcase_26 AC 263 ms
91,904 KB
testcase_27 AC 269 ms
92,032 KB
testcase_28 AC 267 ms
92,032 KB
testcase_29 AC 947 ms
98,176 KB
testcase_30 AC 893 ms
98,048 KB
testcase_31 AC 930 ms
98,048 KB
testcase_32 AC 921 ms
98,176 KB
testcase_33 AC 912 ms
98,176 KB
testcase_34 AC 871 ms
97,920 KB
testcase_35 AC 953 ms
98,176 KB
testcase_36 AC 899 ms
98,048 KB
testcase_37 AC 910 ms
98,176 KB
testcase_38 AC 897 ms
98,176 KB
testcase_39 AC 889 ms
98,048 KB
testcase_40 AC 937 ms
98,432 KB
testcase_41 AC 906 ms
98,176 KB
testcase_42 AC 954 ms
98,176 KB
testcase_43 AC 914 ms
98,176 KB
testcase_44 AC 896 ms
98,048 KB
testcase_45 AC 954 ms
98,176 KB
testcase_46 AC 934 ms
98,048 KB
evil_random20_1.txt AC 901 ms
98,048 KB
evil_random20_2.txt AC 890 ms
98,048 KB
evil_random20_3.txt AC 878 ms
98,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections,sys,math,functools,operator,itertools,bisect,heapq,decimal,string,time,random
#sys.setrecursionlimit(10**9)
#sys.set_int_max_str_digits(0)
n,m,q = map(int,input().split())
item = [list(map(int,input().split())) for i in range(n)]
ans = 0
asu = [0 for i in range(1<<n)]
for s in range(1<<n):
    a,b = 0,0
    for j in range(n):
        if (s >> j) & 1 == 1:
            a += item[j][0]
            b += item[j][1]
    if a <= q:
        asu[s] = b

#or convolution andにする場合は配列をreverseしてからゼータ変換して点積をとってメビウス変換してreverseする
def subset_zeta_transform(s):
    for i in range(n):
        for j in range(1<<n):
            if (j >> i) & 1 == 0:
                s[j | (1 << i)] = max(s[j],s[j | (1 << i)])
    return s
asu = subset_zeta_transform(asu)

for s in range(1<<n):
    a,b = 0,0
    r = 0
    for j in range(n):
        if (s >> j) & 1 == 1:
            a += item[j][0]
            b += item[j][1]
        else:
            r += (1 << j)
    if a <= m:
        ans = max(ans,b + asu[r])
print(ans)
        
0