結果

問題 No.733 分身並列コーディング
ユーザー tktk_snsntktk_snsn
提出日時 2021-01-28 23:53:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 441 ms / 1,500 ms
コード長 474 bytes
コンパイル時間 448 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 67,840 KB
最終ジャッジ日時 2024-06-26 07:34:57
合計ジャッジ時間 11,718 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,096 KB
testcase_01 AC 42 ms
52,392 KB
testcase_02 AC 41 ms
52,224 KB
testcase_03 AC 420 ms
67,584 KB
testcase_04 AC 413 ms
67,072 KB
testcase_05 AC 411 ms
66,304 KB
testcase_06 AC 39 ms
52,224 KB
testcase_07 AC 416 ms
66,944 KB
testcase_08 AC 413 ms
67,200 KB
testcase_09 AC 238 ms
65,024 KB
testcase_10 AC 59 ms
62,592 KB
testcase_11 AC 60 ms
62,848 KB
testcase_12 AC 40 ms
52,224 KB
testcase_13 AC 39 ms
51,840 KB
testcase_14 AC 96 ms
62,848 KB
testcase_15 AC 53 ms
61,952 KB
testcase_16 AC 39 ms
52,224 KB
testcase_17 AC 43 ms
58,240 KB
testcase_18 AC 59 ms
63,232 KB
testcase_19 AC 193 ms
64,896 KB
testcase_20 AC 189 ms
65,920 KB
testcase_21 AC 94 ms
63,104 KB
testcase_22 AC 415 ms
67,840 KB
testcase_23 AC 95 ms
63,744 KB
testcase_24 AC 95 ms
63,360 KB
testcase_25 AC 51 ms
61,824 KB
testcase_26 AC 38 ms
51,840 KB
testcase_27 AC 53 ms
62,336 KB
testcase_28 AC 437 ms
67,072 KB
testcase_29 AC 417 ms
67,712 KB
testcase_30 AC 416 ms
67,328 KB
testcase_31 AC 415 ms
67,456 KB
testcase_32 AC 67 ms
62,976 KB
testcase_33 AC 74 ms
62,592 KB
testcase_34 AC 74 ms
63,232 KB
testcase_35 AC 73 ms
63,232 KB
testcase_36 AC 68 ms
63,616 KB
testcase_37 AC 73 ms
62,464 KB
testcase_38 AC 439 ms
67,328 KB
testcase_39 AC 416 ms
67,584 KB
testcase_40 AC 414 ms
67,328 KB
testcase_41 AC 72 ms
63,104 KB
testcase_42 AC 73 ms
62,976 KB
testcase_43 AC 72 ms
62,592 KB
testcase_44 AC 440 ms
66,944 KB
testcase_45 AC 441 ms
67,456 KB
testcase_46 AC 439 ms
66,944 KB
testcase_47 AC 415 ms
67,072 KB
testcase_48 AC 415 ms
67,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.buffer.readline
sys.setrecursionlimit(10 ** 7)

T = int(input())
N = int(input())
A = [int(input()) for _ in range(N)]

dp = [N] * (1 << N)
dp[0] = 0
for S in range(1, 1 << N):
    time = 0
    for i, t in enumerate(A):
        if (S >> i) & 1:
            time += t
    if time <= T:
        dp[S] = 1

for S in range(1, 1 << N):
    T = S
    while T:
        dp[S] = min(dp[S], dp[T] + dp[S ^ T])
        T = (T - 1) & S
print(dp[(1 << N)-1])
0