結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,968 KB
testcase_01 AC 42 ms
51,840 KB
testcase_02 AC 42 ms
52,096 KB
testcase_03 AC 263 ms
97,920 KB
testcase_04 AC 380 ms
112,640 KB
testcase_05 AC 265 ms
97,920 KB
testcase_06 AC 42 ms
51,840 KB
testcase_07 AC 277 ms
98,176 KB
testcase_08 AC 273 ms
97,920 KB
testcase_09 AC 208 ms
88,064 KB
testcase_10 AC 85 ms
72,576 KB
testcase_11 AC 77 ms
72,064 KB
testcase_12 AC 43 ms
51,968 KB
testcase_13 AC 42 ms
51,968 KB
testcase_14 AC 133 ms
81,408 KB
testcase_15 AC 71 ms
68,480 KB
testcase_16 AC 42 ms
51,840 KB
testcase_17 AC 43 ms
52,352 KB
testcase_18 AC 78 ms
72,064 KB
testcase_19 AC 215 ms
88,960 KB
testcase_20 AC 216 ms
90,368 KB
testcase_21 AC 134 ms
81,024 KB
testcase_22 AC 390 ms
108,160 KB
testcase_23 AC 133 ms
80,768 KB
testcase_24 AC 130 ms
80,640 KB
testcase_25 AC 59 ms
63,616 KB
testcase_26 AC 42 ms
51,968 KB
testcase_27 AC 72 ms
68,480 KB
testcase_28 AC 316 ms
100,736 KB
testcase_29 AC 384 ms
105,728 KB
testcase_30 AC 397 ms
106,624 KB
testcase_31 AC 396 ms
107,520 KB
testcase_32 AC 98 ms
77,568 KB
testcase_33 AC 98 ms
77,440 KB
testcase_34 AC 98 ms
77,568 KB
testcase_35 AC 101 ms
77,696 KB
testcase_36 AC 99 ms
77,440 KB
testcase_37 AC 97 ms
77,568 KB
testcase_38 AC 376 ms
104,576 KB
testcase_39 AC 371 ms
104,576 KB
testcase_40 AC 371 ms
104,832 KB
testcase_41 AC 100 ms
77,952 KB
testcase_42 AC 99 ms
77,952 KB
testcase_43 AC 102 ms
77,696 KB
testcase_44 AC 373 ms
103,808 KB
testcase_45 AC 384 ms
106,368 KB
testcase_46 AC 378 ms
107,776 KB
testcase_47 AC 380 ms
104,704 KB
testcase_48 AC 377 ms
104,576 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