結果

問題 No.733 分身並列コーディング
ユーザー rlangevinrlangevin
提出日時 2023-08-31 12:29:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 665 ms / 1,500 ms
コード長 429 bytes
コンパイル時間 530 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 71,552 KB
最終ジャッジ日時 2024-06-11 01:22:23
合計ジャッジ時間 14,364 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,840 KB
testcase_01 AC 35 ms
52,608 KB
testcase_02 AC 36 ms
52,728 KB
testcase_03 AC 646 ms
68,992 KB
testcase_04 AC 648 ms
68,992 KB
testcase_05 AC 69 ms
66,816 KB
testcase_06 AC 36 ms
52,224 KB
testcase_07 AC 565 ms
71,552 KB
testcase_08 AC 510 ms
71,424 KB
testcase_09 AC 230 ms
65,536 KB
testcase_10 AC 57 ms
62,464 KB
testcase_11 AC 62 ms
62,464 KB
testcase_12 AC 37 ms
52,224 KB
testcase_13 AC 34 ms
51,968 KB
testcase_14 AC 116 ms
63,744 KB
testcase_15 AC 51 ms
62,080 KB
testcase_16 AC 36 ms
52,096 KB
testcase_17 AC 40 ms
58,496 KB
testcase_18 AC 58 ms
62,464 KB
testcase_19 AC 402 ms
65,920 KB
testcase_20 AC 245 ms
66,048 KB
testcase_21 AC 122 ms
64,000 KB
testcase_22 AC 665 ms
69,784 KB
testcase_23 AC 116 ms
64,128 KB
testcase_24 AC 118 ms
64,256 KB
testcase_25 AC 49 ms
62,080 KB
testcase_26 AC 35 ms
52,480 KB
testcase_27 AC 51 ms
62,208 KB
testcase_28 AC 482 ms
71,040 KB
testcase_29 AC 555 ms
69,888 KB
testcase_30 AC 555 ms
69,588 KB
testcase_31 AC 560 ms
69,632 KB
testcase_32 AC 79 ms
63,104 KB
testcase_33 AC 76 ms
63,360 KB
testcase_34 AC 73 ms
63,488 KB
testcase_35 AC 72 ms
63,232 KB
testcase_36 AC 72 ms
63,488 KB
testcase_37 AC 77 ms
63,616 KB
testcase_38 AC 559 ms
70,812 KB
testcase_39 AC 550 ms
70,528 KB
testcase_40 AC 550 ms
69,376 KB
testcase_41 AC 73 ms
63,872 KB
testcase_42 AC 73 ms
63,872 KB
testcase_43 AC 75 ms
63,616 KB
testcase_44 AC 560 ms
69,860 KB
testcase_45 AC 572 ms
69,760 KB
testcase_46 AC 560 ms
70,016 KB
testcase_47 AC 554 ms
69,632 KB
testcase_48 AC 558 ms
69,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())
N = int(input())
t = [0] * N
for i in range(N):
    t[i] = int(input())

inf = 10 ** 18
N2 = 1 << N
dp = [inf] * N2
for s in range(1, N2):
    v = 0
    for i in range(N):
        if (s >> i) & 1:
            v += t[i]
    if v <= T:
        dp[s] = 1
        continue
    sub = s
    while sub:
        nokori = s ^ sub
        dp[s] = min(dp[s], dp[sub] + dp[nokori])
        sub = (sub - 1) & s

print(dp[-1])
0