結果

問題 No.393 2本の竹
ユーザー ckawatakckawatak
提出日時 2019-01-09 23:23:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 324 ms / 1,000 ms
コード長 867 bytes
コンパイル時間 298 ms
コンパイル使用メモリ 82,036 KB
実行使用メモリ 79,572 KB
最終ジャッジ日時 2024-11-24 01:01:03
合計ジャッジ時間 3,437 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
63,236 KB
testcase_01 AC 45 ms
60,484 KB
testcase_02 AC 47 ms
62,244 KB
testcase_03 AC 48 ms
62,788 KB
testcase_04 AC 45 ms
60,324 KB
testcase_05 AC 47 ms
61,008 KB
testcase_06 AC 43 ms
60,612 KB
testcase_07 AC 48 ms
63,184 KB
testcase_08 AC 53 ms
65,924 KB
testcase_09 AC 324 ms
79,572 KB
testcase_10 AC 84 ms
77,492 KB
testcase_11 AC 120 ms
77,232 KB
testcase_12 AC 144 ms
77,740 KB
testcase_13 AC 93 ms
75,960 KB
testcase_14 AC 63 ms
75,060 KB
testcase_15 AC 50 ms
68,732 KB
testcase_16 AC 83 ms
76,232 KB
testcase_17 AC 49 ms
62,580 KB
testcase_18 AC 47 ms
61,564 KB
testcase_19 AC 43 ms
58,932 KB
testcase_20 AC 44 ms
61,212 KB
testcase_21 AC 47 ms
62,656 KB
testcase_22 AC 169 ms
78,968 KB
testcase_23 AC 85 ms
76,172 KB
testcase_24 AC 49 ms
66,456 KB
testcase_25 AC 48 ms
64,088 KB
testcase_26 AC 44 ms
60,396 KB
testcase_27 AC 280 ms
78,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MAX = 100000

def accept(n1, n2, fragments, upper):
    if upper == 0:
        return True

    total = 0
    for i in range(upper):
        total = total + fragments[i]
    if n1+n2 < total:
        return False

    dp = [False for _ in range(n1+1)]
    dp[0] = True

    for i in range(upper):
        for j in reversed(range(n1+1)):
            if dp[j]:
                if j + fragments[i] <= n1:
                    dp[j + fragments[i]] = True

    for i in reversed(range(n1+1)):
        if dp[i] and total - i <= n2:
            return True

    return False

N = int(input())
        
for i in range(N):
    n1, n2 = sorted(list(map(int, input().split(' '))))
    m = int(input())
    fragments = sorted(list(map(int, input().split(' '))))

    for j in reversed(range(0,m+1)):
        if accept(n1, n2, fragments, j):
            print(j)
            break
0