結果

問題 No.393 2本の竹
ユーザー rlangevinrlangevin
提出日時 2023-11-22 08:56:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 544 ms / 1,000 ms
コード長 626 bytes
コンパイル時間 288 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 251,904 KB
最終ジャッジ日時 2024-09-26 07:25:34
合計ジャッジ時間 6,031 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
66,688 KB
testcase_01 AC 69 ms
63,360 KB
testcase_02 AC 82 ms
67,712 KB
testcase_03 AC 68 ms
64,512 KB
testcase_04 AC 64 ms
62,336 KB
testcase_05 AC 65 ms
63,872 KB
testcase_06 AC 61 ms
62,848 KB
testcase_07 AC 78 ms
70,528 KB
testcase_08 AC 97 ms
76,044 KB
testcase_09 AC 544 ms
203,008 KB
testcase_10 AC 266 ms
137,344 KB
testcase_11 AC 278 ms
144,232 KB
testcase_12 AC 319 ms
163,072 KB
testcase_13 AC 247 ms
129,664 KB
testcase_14 AC 179 ms
111,616 KB
testcase_15 AC 150 ms
96,128 KB
testcase_16 AC 228 ms
144,000 KB
testcase_17 AC 72 ms
64,640 KB
testcase_18 AC 69 ms
63,744 KB
testcase_19 AC 67 ms
62,464 KB
testcase_20 AC 69 ms
63,488 KB
testcase_21 AC 64 ms
64,768 KB
testcase_22 AC 349 ms
176,000 KB
testcase_23 AC 255 ms
130,304 KB
testcase_24 AC 94 ms
75,648 KB
testcase_25 AC 82 ms
71,552 KB
testcase_26 AC 61 ms
63,360 KB
testcase_27 AC 488 ms
251,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

t = int(input())
inf = 10 ** 18
for _ in range(t):
    n1, n2 = map(int, input().split())
    m = int(input())
    A = sorted(list(map(int, input().split())))
    pre = [-inf] * (n1 + 1)
    pre[0] = 0
    now = 0
    ans = -1
    for a in A:
        dp = [-inf] * (n1 + 1)
        for i in range(n1 + 1):
            if i + a <= n1:
                dp[i + a] = max(dp[i + a], pre[i] + 1)
            if now - i + a <= n2:
                dp[i] = max(dp[i], pre[i] + 1)
        ans = max(ans, max(dp))
        now += a
        dp, pre = pre, dp

    print(ans) if ans != -1 else print(0)
0