結果

問題 No.733 分身並列コーディング
ユーザー convexineqconvexineq
提出日時 2021-03-17 17:39:32
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 465 bytes
コンパイル時間 354 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 147,072 KB
最終ジャッジ日時 2024-11-15 10:07:57
合計ジャッジ時間 15,305 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
57,088 KB
testcase_01 AC 41 ms
126,080 KB
testcase_02 AC 41 ms
57,344 KB
testcase_03 AC 99 ms
71,168 KB
testcase_04 AC 96 ms
71,168 KB
testcase_05 AC 65 ms
67,840 KB
testcase_06 AC 39 ms
52,224 KB
testcase_07 TLE -
testcase_08 TLE -
testcase_09 AC 86 ms
67,712 KB
testcase_10 AC 61 ms
64,256 KB
testcase_11 AC 57 ms
63,360 KB
testcase_12 AC 40 ms
52,096 KB
testcase_13 AC 39 ms
51,968 KB
testcase_14 AC 71 ms
65,792 KB
testcase_15 AC 60 ms
64,256 KB
testcase_16 AC 39 ms
51,584 KB
testcase_17 AC 44 ms
57,984 KB
testcase_18 AC 66 ms
64,640 KB
testcase_19 AC 82 ms
66,944 KB
testcase_20 AC 100 ms
68,352 KB
testcase_21 AC 67 ms
64,512 KB
testcase_22 AC 121 ms
71,808 KB
testcase_23 AC 77 ms
66,048 KB
testcase_24 AC 91 ms
66,432 KB
testcase_25 AC 52 ms
61,184 KB
testcase_26 AC 40 ms
51,712 KB
testcase_27 AC 61 ms
63,744 KB
testcase_28 AC 1,152 ms
74,240 KB
testcase_29 AC 325 ms
74,240 KB
testcase_30 AC 217 ms
73,728 KB
testcase_31 AC 266 ms
73,728 KB
testcase_32 AC 75 ms
65,920 KB
testcase_33 AC 68 ms
65,152 KB
testcase_34 AC 85 ms
65,920 KB
testcase_35 AC 82 ms
66,560 KB
testcase_36 AC 74 ms
65,920 KB
testcase_37 AC 82 ms
66,176 KB
testcase_38 AC 409 ms
75,136 KB
testcase_39 AC 639 ms
74,496 KB
testcase_40 AC 448 ms
74,368 KB
testcase_41 AC 85 ms
66,176 KB
testcase_42 AC 82 ms
65,792 KB
testcase_43 AC 73 ms
66,048 KB
testcase_44 AC 657 ms
74,112 KB
testcase_45 AC 452 ms
74,240 KB
testcase_46 AC 352 ms
74,368 KB
testcase_47 AC 811 ms
74,368 KB
testcase_48 AC 389 ms
147,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T,n,*a = map(int,open(0).read().split())
N = 1<<n
lst = [0]*N
for i in range(n):
    for j in range(1<<i):
        lst[j+(1<<i)] = lst[j] + a[i]
for i in range(N):
    lst[i] = int(lst[i] <= T)
for i in range(N):
    for j in range(n):
        if i>>j&1==0 and lst[i|(1<<j)]:
            lst[i] = 0
            break

dp = [n+9]*N
dp[0] = 0
for i in range(N):
    if lst[i] == 0: continue
    for j in range(N):
        dp[j|i] = min(dp[j|i], dp[j]+1)
print(dp[-1])
0