結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,188 KB
testcase_01 AC 36 ms
52,256 KB
testcase_02 AC 36 ms
53,760 KB
testcase_03 AC 221 ms
98,164 KB
testcase_04 AC 337 ms
112,788 KB
testcase_05 AC 221 ms
98,112 KB
testcase_06 AC 35 ms
53,356 KB
testcase_07 AC 241 ms
98,128 KB
testcase_08 AC 240 ms
98,128 KB
testcase_09 AC 177 ms
88,104 KB
testcase_10 AC 63 ms
73,376 KB
testcase_11 AC 63 ms
74,204 KB
testcase_12 AC 37 ms
52,672 KB
testcase_13 AC 38 ms
52,652 KB
testcase_14 AC 110 ms
81,304 KB
testcase_15 AC 57 ms
69,412 KB
testcase_16 AC 36 ms
52,152 KB
testcase_17 AC 37 ms
54,012 KB
testcase_18 AC 61 ms
72,512 KB
testcase_19 AC 179 ms
89,008 KB
testcase_20 AC 191 ms
90,424 KB
testcase_21 AC 111 ms
81,132 KB
testcase_22 AC 357 ms
108,248 KB
testcase_23 AC 110 ms
80,996 KB
testcase_24 AC 108 ms
80,868 KB
testcase_25 AC 50 ms
64,256 KB
testcase_26 AC 38 ms
52,756 KB
testcase_27 AC 57 ms
70,360 KB
testcase_28 AC 265 ms
100,892 KB
testcase_29 AC 351 ms
105,924 KB
testcase_30 AC 329 ms
106,836 KB
testcase_31 AC 315 ms
107,604 KB
testcase_32 AC 78 ms
77,660 KB
testcase_33 AC 77 ms
77,752 KB
testcase_34 AC 78 ms
77,584 KB
testcase_35 AC 76 ms
77,544 KB
testcase_36 AC 77 ms
77,732 KB
testcase_37 AC 82 ms
78,032 KB
testcase_38 AC 300 ms
104,696 KB
testcase_39 AC 305 ms
104,660 KB
testcase_40 AC 313 ms
104,792 KB
testcase_41 AC 80 ms
77,692 KB
testcase_42 AC 79 ms
77,688 KB
testcase_43 AC 82 ms
77,580 KB
testcase_44 AC 308 ms
103,864 KB
testcase_45 AC 322 ms
106,704 KB
testcase_46 AC 308 ms
107,496 KB
testcase_47 AC 340 ms
104,780 KB
testcase_48 AC 305 ms
104,704 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