結果

問題 No.50 おもちゃ箱
ユーザー colognecologne
提出日時 2022-01-24 19:55:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 73 ms / 5,000 ms
コード長 917 bytes
コンパイル時間 493 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 74,632 KB
最終ジャッジ日時 2024-12-14 21:38:57
合計ジャッジ時間 3,993 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
60,020 KB
testcase_01 AC 58 ms
69,204 KB
testcase_02 AC 37 ms
53,420 KB
testcase_03 AC 37 ms
52,744 KB
testcase_04 AC 38 ms
52,272 KB
testcase_05 AC 60 ms
70,544 KB
testcase_06 AC 58 ms
68,900 KB
testcase_07 AC 38 ms
53,628 KB
testcase_08 AC 37 ms
53,136 KB
testcase_09 AC 35 ms
53,340 KB
testcase_10 AC 37 ms
53,184 KB
testcase_11 AC 39 ms
53,372 KB
testcase_12 AC 38 ms
52,888 KB
testcase_13 AC 37 ms
52,620 KB
testcase_14 AC 38 ms
54,256 KB
testcase_15 AC 37 ms
53,192 KB
testcase_16 AC 39 ms
53,812 KB
testcase_17 AC 55 ms
67,268 KB
testcase_18 AC 52 ms
63,456 KB
testcase_19 AC 61 ms
69,592 KB
testcase_20 AC 46 ms
62,008 KB
testcase_21 AC 51 ms
65,788 KB
testcase_22 AC 59 ms
68,968 KB
testcase_23 AC 43 ms
61,440 KB
testcase_24 AC 34 ms
52,824 KB
testcase_25 AC 38 ms
52,272 KB
testcase_26 AC 47 ms
61,680 KB
testcase_27 AC 60 ms
67,240 KB
testcase_28 AC 58 ms
68,076 KB
testcase_29 AC 58 ms
68,720 KB
testcase_30 AC 52 ms
65,592 KB
testcase_31 AC 35 ms
52,820 KB
testcase_32 AC 61 ms
70,704 KB
testcase_33 AC 59 ms
69,176 KB
testcase_34 AC 73 ms
74,376 KB
testcase_35 AC 59 ms
68,792 KB
testcase_36 AC 56 ms
69,712 KB
testcase_37 AC 59 ms
68,140 KB
testcase_38 AC 53 ms
65,704 KB
testcase_39 AC 68 ms
74,428 KB
testcase_40 AC 71 ms
74,632 KB
testcase_41 AC 55 ms
67,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys


def input(): return sys.stdin.readline().rstrip()


def main():
    N = int(input())
    *A, = map(int, input().split())
    M = int(input())
    *B, = sorted(map(int, input().split()), reverse=True)

    S = [0]*(1 << N)
    for i in range(1 << N):
        for j in range(N):
            if i & (1 << j):
                S[i] += A[j]

    dp = [[None]*(M+1) for i in range(1 << N)]

    def solve(am, b):
        if dp[am][b] is not None:
            return dp[am][b]
        if am == 0:
            return 0
        if b == M:
            return M+1

        ans = M+1
        j = am
        while j > 0:
            if am & (j & -j) != 0 and S[j] <= B[b]:
                ans = min(ans, solve(am-j, b+1)+1)
            j = (j-1) & am

        dp[am][b] = ans
        return ans

    ans = solve((1 << N)-1, 0)
    if ans == M+1:
        ans = -1
    print(ans)


if __name__ == '__main__':
    main()
0