結果

問題 No.393 2本の竹
ユーザー ckawatakckawatak
提出日時 2019-01-08 23:25:29
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 864 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 18,588 KB
最終ジャッジ日時 2024-05-03 03:49:33
合計ジャッジ時間 20,661 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 827 ms
18,552 KB
testcase_01 AC 450 ms
11,612 KB
testcase_02 AC 773 ms
11,612 KB
testcase_03 AC 689 ms
11,744 KB
testcase_04 AC 422 ms
11,744 KB
testcase_05 AC 486 ms
11,648 KB
testcase_06 AC 362 ms
11,648 KB
testcase_07 AC 669 ms
11,612 KB
testcase_08 TLE -
testcase_09 TLE -
testcase_10 AC 477 ms
11,776 KB
testcase_11 AC 841 ms
11,612 KB
testcase_12 TLE -
testcase_13 AC 778 ms
11,616 KB
testcase_14 AC 630 ms
11,648 KB
testcase_15 AC 113 ms
11,612 KB
testcase_16 AC 188 ms
11,648 KB
testcase_17 AC 759 ms
11,616 KB
testcase_18 AC 402 ms
11,744 KB
testcase_19 AC 245 ms
11,616 KB
testcase_20 AC 359 ms
11,540 KB
testcase_21 AC 782 ms
11,648 KB
testcase_22 AC 996 ms
11,872 KB
testcase_23 AC 519 ms
11,616 KB
testcase_24 AC 554 ms
11,776 KB
testcase_25 AC 653 ms
11,616 KB
testcase_26 AC 326 ms
11,612 KB
testcase_27 TLE -
権限があれば一括ダウンロードができます

ソースコード

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(MAX)]
    dp[0] = True

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

    for i in reversed(range(MAX)):
        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