結果

問題 No.733 分身並列コーディング
ユーザー ryusukeryusuke
提出日時 2024-05-09 17:17:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 402 ms / 1,500 ms
コード長 448 bytes
コンパイル時間 328 ms
コンパイル使用メモリ 82,100 KB
実行使用メモリ 112,848 KB
最終ジャッジ日時 2024-12-16 08:11:54
合計ジャッジ時間 11,314 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,096 KB
testcase_01 AC 44 ms
51,840 KB
testcase_02 AC 43 ms
52,224 KB
testcase_03 AC 267 ms
98,304 KB
testcase_04 AC 387 ms
112,848 KB
testcase_05 AC 272 ms
98,304 KB
testcase_06 AC 44 ms
52,480 KB
testcase_07 AC 276 ms
98,436 KB
testcase_08 AC 271 ms
98,332 KB
testcase_09 AC 206 ms
88,320 KB
testcase_10 AC 72 ms
73,088 KB
testcase_11 AC 71 ms
72,576 KB
testcase_12 AC 43 ms
52,608 KB
testcase_13 AC 43 ms
52,608 KB
testcase_14 AC 131 ms
81,860 KB
testcase_15 AC 69 ms
69,120 KB
testcase_16 AC 44 ms
52,480 KB
testcase_17 AC 43 ms
52,864 KB
testcase_18 AC 72 ms
72,320 KB
testcase_19 AC 214 ms
89,216 KB
testcase_20 AC 222 ms
90,688 KB
testcase_21 AC 134 ms
81,300 KB
testcase_22 AC 394 ms
108,160 KB
testcase_23 AC 133 ms
81,108 KB
testcase_24 AC 135 ms
81,036 KB
testcase_25 AC 62 ms
63,744 KB
testcase_26 AC 43 ms
52,480 KB
testcase_27 AC 69 ms
68,864 KB
testcase_28 AC 318 ms
101,032 KB
testcase_29 AC 383 ms
105,856 KB
testcase_30 AC 402 ms
106,916 KB
testcase_31 AC 393 ms
107,648 KB
testcase_32 AC 97 ms
77,824 KB
testcase_33 AC 97 ms
77,824 KB
testcase_34 AC 93 ms
77,696 KB
testcase_35 AC 97 ms
77,824 KB
testcase_36 AC 94 ms
77,696 KB
testcase_37 AC 91 ms
77,696 KB
testcase_38 AC 375 ms
104,892 KB
testcase_39 AC 368 ms
104,832 KB
testcase_40 AC 375 ms
104,940 KB
testcase_41 AC 98 ms
77,824 KB
testcase_42 AC 93 ms
77,696 KB
testcase_43 AC 94 ms
77,696 KB
testcase_44 AC 362 ms
104,320 KB
testcase_45 AC 376 ms
106,808 KB
testcase_46 AC 375 ms
107,564 KB
testcase_47 AC 377 ms
104,832 KB
testcase_48 AC 377 ms
104,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())
N = int(input())
t = [int(input()) for _ in range(N)]
 
INF = 10**18
dp = [[INF]*2 for _ in range(1 << N)]
dp[0] = [1, 0]

for S in range(1 << N):
    for i in range(N):
        if (S >> i) & 1:
            continue
        p = dp[S][:]
        if p[1] + t[i] <= T:
            p[1] += t[i]
        else:
            p[0] += 1
            p[1] = t[i]
        dp[S | (1 << i)] = min(dp[S | (1 << i)], p)
 
print(dp[(1 << N) - 1][0])
0