結果

問題 No.2686 商品券の使い道
ユーザー detteiuudetteiuu
提出日時 2024-11-24 01:50:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,777 ms / 3,000 ms
コード長 980 bytes
コンパイル時間 324 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 92,928 KB
最終ジャッジ日時 2024-11-24 01:51:08
合計ジャッジ時間 31,519 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,840 KB
testcase_01 AC 41 ms
51,840 KB
testcase_02 AC 57 ms
62,976 KB
testcase_03 AC 79 ms
71,168 KB
testcase_04 AC 77 ms
70,656 KB
testcase_05 AC 73 ms
67,328 KB
testcase_06 AC 65 ms
65,792 KB
testcase_07 AC 57 ms
62,720 KB
testcase_08 AC 56 ms
62,848 KB
testcase_09 AC 64 ms
65,664 KB
testcase_10 AC 109 ms
71,552 KB
testcase_11 AC 323 ms
80,600 KB
testcase_12 AC 232 ms
80,256 KB
testcase_13 AC 425 ms
80,128 KB
testcase_14 AC 382 ms
80,640 KB
testcase_15 AC 218 ms
80,384 KB
testcase_16 AC 290 ms
80,640 KB
testcase_17 AC 208 ms
80,280 KB
testcase_18 AC 302 ms
80,256 KB
testcase_19 AC 261 ms
80,256 KB
testcase_20 AC 398 ms
80,256 KB
testcase_21 AC 404 ms
80,384 KB
testcase_22 AC 169 ms
80,256 KB
testcase_23 AC 182 ms
80,512 KB
testcase_24 AC 301 ms
80,712 KB
testcase_25 AC 108 ms
78,080 KB
testcase_26 AC 248 ms
80,348 KB
testcase_27 AC 435 ms
80,256 KB
testcase_28 AC 252 ms
80,128 KB
testcase_29 AC 216 ms
92,672 KB
testcase_30 AC 1,738 ms
92,672 KB
testcase_31 AC 1,604 ms
92,672 KB
testcase_32 AC 1,249 ms
92,928 KB
testcase_33 AC 1,750 ms
92,672 KB
testcase_34 AC 1,777 ms
92,544 KB
testcase_35 AC 1,737 ms
92,544 KB
testcase_36 AC 1,069 ms
92,672 KB
testcase_37 AC 1,109 ms
92,800 KB
testcase_38 AC 1,592 ms
92,544 KB
testcase_39 AC 1,330 ms
92,672 KB
testcase_40 AC 1,092 ms
92,544 KB
testcase_41 AC 820 ms
92,544 KB
testcase_42 AC 937 ms
92,416 KB
testcase_43 AC 1,082 ms
92,800 KB
testcase_44 AC 1,248 ms
92,544 KB
testcase_45 AC 1,705 ms
92,416 KB
testcase_46 AC 1,196 ms
92,800 KB
evil_random20_1.txt AC 97 ms
82,304 KB
evil_random20_2.txt AC 98 ms
82,816 KB
evil_random20_3.txt AC 79 ms
75,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M, Q = map(int, input().split())
AB = [list(map(int, input().split())) for _ in range(N)]

INF = 10**18

dp = [[INF]*(1<<N) for _ in range(2)]
dp[0][0] = 0
for i in range(2):
    for bit in range(1<<N):
        if dp[i][bit] == INF:
            continue
        for j in range(N):
            if not 1<<j & bit:
                A = AB[j][0]
                if i == 0:
                    if dp[i][bit]+A <= M:
                        dp[i][bit|1<<j] = min(dp[i][bit|1<<j], dp[i][bit]+A)
                    if A <= Q:
                        dp[i+1][bit|1<<j] = min(dp[i+1][bit|1<<j], A)
                else:
                    if dp[i][bit]+A <= Q:
                        dp[i][bit|1<<j] = min(dp[i][bit|1<<j], dp[i][bit]+A)

ans = 0
for i in range(2):
    for bit in range(1<<N):
        if dp[i][bit] == INF:
            continue
        SUM = 0
        for j in range(N):
            if 1<<j & bit:
                SUM += AB[j][1]
        ans = max(ans, SUM)

print(ans)
0