結果

問題 No.733 分身並列コーディング
ユーザー rlangevinrlangevin
提出日時 2023-08-31 12:29:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 783 ms / 1,500 ms
コード長 429 bytes
コンパイル時間 353 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 71,680 KB
最終ジャッジ日時 2025-01-03 04:32:57
合計ジャッジ時間 15,263 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 36 ms
51,968 KB
testcase_02 AC 39 ms
52,096 KB
testcase_03 AC 783 ms
68,992 KB
testcase_04 AC 675 ms
69,248 KB
testcase_05 AC 72 ms
66,944 KB
testcase_06 AC 38 ms
51,968 KB
testcase_07 AC 596 ms
71,680 KB
testcase_08 AC 539 ms
71,552 KB
testcase_09 AC 246 ms
65,920 KB
testcase_10 AC 62 ms
62,720 KB
testcase_11 AC 64 ms
62,720 KB
testcase_12 AC 37 ms
52,096 KB
testcase_13 AC 36 ms
52,224 KB
testcase_14 AC 120 ms
64,000 KB
testcase_15 AC 55 ms
61,952 KB
testcase_16 AC 38 ms
52,096 KB
testcase_17 AC 45 ms
58,368 KB
testcase_18 AC 60 ms
62,848 KB
testcase_19 AC 409 ms
66,048 KB
testcase_20 AC 265 ms
66,048 KB
testcase_21 AC 129 ms
63,872 KB
testcase_22 AC 687 ms
69,888 KB
testcase_23 AC 125 ms
64,128 KB
testcase_24 AC 129 ms
64,128 KB
testcase_25 AC 53 ms
62,208 KB
testcase_26 AC 37 ms
52,352 KB
testcase_27 AC 53 ms
62,336 KB
testcase_28 AC 491 ms
71,680 KB
testcase_29 AC 586 ms
69,888 KB
testcase_30 AC 596 ms
69,504 KB
testcase_31 AC 592 ms
69,632 KB
testcase_32 AC 77 ms
63,104 KB
testcase_33 AC 77 ms
63,488 KB
testcase_34 AC 76 ms
63,488 KB
testcase_35 AC 79 ms
63,232 KB
testcase_36 AC 77 ms
63,360 KB
testcase_37 AC 82 ms
63,488 KB
testcase_38 AC 604 ms
71,168 KB
testcase_39 AC 603 ms
70,144 KB
testcase_40 AC 598 ms
69,504 KB
testcase_41 AC 81 ms
63,488 KB
testcase_42 AC 80 ms
63,360 KB
testcase_43 AC 79 ms
63,744 KB
testcase_44 AC 593 ms
69,760 KB
testcase_45 AC 606 ms
69,760 KB
testcase_46 AC 604 ms
69,888 KB
testcase_47 AC 607 ms
69,760 KB
testcase_48 AC 588 ms
69,760 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