結果

問題 No.393 2本の竹
ユーザー roarisroaris
提出日時 2019-12-13 00:47:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 904 ms / 1,000 ms
コード長 734 bytes
コンパイル時間 198 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 84,440 KB
最終ジャッジ日時 2024-06-26 01:50:40
合計ジャッジ時間 6,884 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
71,628 KB
testcase_01 AC 59 ms
67,128 KB
testcase_02 AC 78 ms
73,960 KB
testcase_03 AC 70 ms
69,716 KB
testcase_04 AC 56 ms
65,196 KB
testcase_05 AC 73 ms
68,356 KB
testcase_06 AC 59 ms
66,004 KB
testcase_07 AC 85 ms
74,288 KB
testcase_08 AC 112 ms
76,716 KB
testcase_09 AC 904 ms
84,440 KB
testcase_10 AC 320 ms
84,344 KB
testcase_11 AC 397 ms
82,540 KB
testcase_12 AC 439 ms
82,020 KB
testcase_13 AC 267 ms
79,812 KB
testcase_14 AC 194 ms
77,484 KB
testcase_15 AC 100 ms
74,800 KB
testcase_16 AC 170 ms
79,048 KB
testcase_17 AC 70 ms
68,680 KB
testcase_18 AC 68 ms
69,152 KB
testcase_19 AC 57 ms
64,832 KB
testcase_20 AC 62 ms
67,872 KB
testcase_21 AC 70 ms
69,648 KB
testcase_22 AC 546 ms
79,024 KB
testcase_23 AC 283 ms
79,104 KB
testcase_24 AC 86 ms
73,956 KB
testcase_25 AC 81 ms
73,544 KB
testcase_26 AC 56 ms
64,256 KB
testcase_27 AC 883 ms
83,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

d = int(input())

for _ in range(d):
    n1, n2 = map(int, input().split())
    m = int(input())
    A = list(map(int, input().split()))
    A.sort()
    dp = [[False]*(n1+1) for _ in range(2)]
    dp[0][0] = True
    acc = 0
    ans = 0
    
    for i in range(m):
        for j in range(n1+1):
            dp[(i+1)&1][j] = False
            
        for j in range(n1+1):
            if j+A[i]<=n1:
                dp[(i+1)&1][j+A[i]] |= dp[i&1][j]
            
            n2_used = acc-j
            
            if n2_used+A[i]<=n2:
                dp[(i+1)&1][j] |= dp[i&1][j]
            
        if True in dp[(i+1)&1]:
            ans = i+1
        else:
            break
            
        acc += A[i]
    
    print(ans)
0