結果

問題 No.733 分身並列コーディング
ユーザー ああいいああいい
提出日時 2022-06-12 20:13:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 633 ms / 1,500 ms
コード長 480 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 71,196 KB
最終ジャッジ日時 2024-09-23 06:48:48
合計ジャッジ時間 15,292 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,556 KB
testcase_01 AC 37 ms
52,440 KB
testcase_02 AC 37 ms
52,808 KB
testcase_03 AC 612 ms
68,992 KB
testcase_04 AC 611 ms
69,536 KB
testcase_05 AC 607 ms
69,200 KB
testcase_06 AC 38 ms
51,944 KB
testcase_07 AC 616 ms
70,012 KB
testcase_08 AC 613 ms
70,620 KB
testcase_09 AC 247 ms
67,084 KB
testcase_10 AC 57 ms
62,976 KB
testcase_11 AC 57 ms
63,176 KB
testcase_12 AC 39 ms
52,204 KB
testcase_13 AC 37 ms
53,816 KB
testcase_14 AC 115 ms
64,252 KB
testcase_15 AC 51 ms
63,040 KB
testcase_16 AC 36 ms
53,080 KB
testcase_17 AC 43 ms
58,372 KB
testcase_18 AC 57 ms
64,060 KB
testcase_19 AC 247 ms
66,056 KB
testcase_20 AC 249 ms
67,428 KB
testcase_21 AC 114 ms
63,676 KB
testcase_22 AC 617 ms
69,940 KB
testcase_23 AC 115 ms
64,700 KB
testcase_24 AC 117 ms
65,276 KB
testcase_25 AC 48 ms
62,660 KB
testcase_26 AC 38 ms
53,492 KB
testcase_27 AC 51 ms
62,672 KB
testcase_28 AC 617 ms
70,620 KB
testcase_29 AC 633 ms
70,388 KB
testcase_30 AC 615 ms
70,716 KB
testcase_31 AC 615 ms
70,212 KB
testcase_32 AC 75 ms
63,720 KB
testcase_33 AC 74 ms
64,472 KB
testcase_34 AC 72 ms
64,072 KB
testcase_35 AC 74 ms
64,032 KB
testcase_36 AC 73 ms
64,364 KB
testcase_37 AC 74 ms
63,648 KB
testcase_38 AC 615 ms
70,476 KB
testcase_39 AC 616 ms
70,336 KB
testcase_40 AC 613 ms
70,916 KB
testcase_41 AC 74 ms
63,904 KB
testcase_42 AC 73 ms
65,220 KB
testcase_43 AC 73 ms
64,196 KB
testcase_44 AC 613 ms
70,040 KB
testcase_45 AC 614 ms
70,496 KB
testcase_46 AC 621 ms
70,988 KB
testcase_47 AC 615 ms
71,196 KB
testcase_48 AC 614 ms
70,388 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())
N = int(input())
t = [int(input()) for _ in range(N)]
inf = 32
dp = [inf] * (1 << N)
for bit in range(1,1 << N):
    tmp = 0
    for i in range(N):
        if bit >> i & 1:
            tmp += t[i]
    if tmp <= T:
        dp[bit] = 1
for bit in range(1,1 << N):
    tmp = inf
    T = bit
    while T:
        T -= 1
        T &= bit
        u = dp[T] + dp[bit ^ T]
        if u < tmp:
            tmp = u
    if tmp < dp[bit]:
        dp[bit] = tmp
print(dp[-1])
0