結果

問題 No.733 分身並列コーディング
ユーザー ryusukeryusuke
提出日時 2024-05-09 17:17:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 454 ms / 1,500 ms
コード長 496 bytes
コンパイル時間 522 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 112,640 KB
最終ジャッジ日時 2024-05-09 17:17:16
合計ジャッジ時間 13,349 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
52,096 KB
testcase_01 AC 49 ms
51,968 KB
testcase_02 AC 50 ms
52,224 KB
testcase_03 AC 326 ms
98,176 KB
testcase_04 AC 446 ms
112,640 KB
testcase_05 AC 318 ms
98,304 KB
testcase_06 AC 47 ms
52,096 KB
testcase_07 AC 291 ms
98,176 KB
testcase_08 AC 287 ms
98,560 KB
testcase_09 AC 214 ms
88,064 KB
testcase_10 AC 91 ms
72,832 KB
testcase_11 AC 77 ms
72,192 KB
testcase_12 AC 49 ms
52,224 KB
testcase_13 AC 46 ms
52,096 KB
testcase_14 AC 139 ms
81,408 KB
testcase_15 AC 72 ms
68,864 KB
testcase_16 AC 41 ms
51,968 KB
testcase_17 AC 43 ms
52,224 KB
testcase_18 AC 88 ms
72,320 KB
testcase_19 AC 235 ms
89,088 KB
testcase_20 AC 233 ms
90,240 KB
testcase_21 AC 147 ms
81,152 KB
testcase_22 AC 431 ms
108,288 KB
testcase_23 AC 142 ms
80,896 KB
testcase_24 AC 140 ms
81,024 KB
testcase_25 AC 64 ms
63,488 KB
testcase_26 AC 48 ms
52,096 KB
testcase_27 AC 77 ms
68,608 KB
testcase_28 AC 373 ms
101,376 KB
testcase_29 AC 420 ms
105,856 KB
testcase_30 AC 432 ms
107,264 KB
testcase_31 AC 454 ms
107,520 KB
testcase_32 AC 103 ms
77,568 KB
testcase_33 AC 110 ms
77,824 KB
testcase_34 AC 105 ms
77,696 KB
testcase_35 AC 114 ms
77,696 KB
testcase_36 AC 112 ms
77,952 KB
testcase_37 AC 110 ms
77,824 KB
testcase_38 AC 441 ms
104,832 KB
testcase_39 AC 396 ms
104,832 KB
testcase_40 AC 409 ms
104,832 KB
testcase_41 AC 104 ms
77,696 KB
testcase_42 AC 107 ms
77,824 KB
testcase_43 AC 116 ms
77,696 KB
testcase_44 AC 400 ms
103,936 KB
testcase_45 AC 420 ms
106,624 KB
testcase_46 AC 443 ms
107,520 KB
testcase_47 AC 399 ms
104,704 KB
testcase_48 AC 402 ms
104,960 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] # need_ride, last_weight
 
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,sep="\n")
print(dp[(1 << N) - 1][0])
0