結果

問題 No.393 2本の竹
ユーザー ckawatakckawatak
提出日時 2019-01-08 23:41:27
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 853 bytes
コンパイル時間 82 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 11,776 KB
最終ジャッジ日時 2024-05-03 03:49:46
合計ジャッジ時間 7,140 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,752 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 33 ms
10,752 KB
testcase_04 AC 28 ms
10,752 KB
testcase_05 AC 28 ms
10,752 KB
testcase_06 AC 29 ms
10,624 KB
testcase_07 AC 34 ms
10,624 KB
testcase_08 AC 38 ms
10,624 KB
testcase_09 TLE -
testcase_10 AC 240 ms
11,612 KB
testcase_11 AC 421 ms
11,356 KB
testcase_12 AC 564 ms
11,232 KB
testcase_13 AC 268 ms
10,880 KB
testcase_14 AC 92 ms
10,752 KB
testcase_15 AC 47 ms
11,136 KB
testcase_16 AC 96 ms
11,360 KB
testcase_17 AC 30 ms
10,752 KB
testcase_18 AC 27 ms
10,752 KB
testcase_19 AC 25 ms
10,624 KB
testcase_20 AC 28 ms
10,752 KB
testcase_21 AC 32 ms
10,880 KB
testcase_22 AC 701 ms
11,484 KB
testcase_23 AC 211 ms
11,232 KB
testcase_24 AC 38 ms
10,752 KB
testcase_25 AC 36 ms
10,752 KB
testcase_26 AC 27 ms
10,752 KB
testcase_27 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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