結果

問題 No.733 分身並列コーディング
ユーザー mkawa2mkawa2
提出日時 2021-01-28 16:28:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 381 ms / 1,500 ms
コード長 1,293 bytes
コンパイル時間 331 ms
コンパイル使用メモリ 82,856 KB
実行使用メモリ 101,956 KB
最終ジャッジ日時 2024-06-26 00:36:18
合計ジャッジ時間 11,976 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,860 KB
testcase_01 AC 39 ms
52,868 KB
testcase_02 AC 41 ms
52,884 KB
testcase_03 AC 295 ms
91,348 KB
testcase_04 AC 367 ms
101,956 KB
testcase_05 AC 240 ms
87,228 KB
testcase_06 AC 40 ms
52,396 KB
testcase_07 AC 276 ms
92,792 KB
testcase_08 AC 251 ms
89,864 KB
testcase_09 AC 259 ms
85,592 KB
testcase_10 AC 132 ms
77,848 KB
testcase_11 AC 137 ms
77,944 KB
testcase_12 AC 40 ms
53,120 KB
testcase_13 AC 40 ms
53,388 KB
testcase_14 AC 182 ms
80,896 KB
testcase_15 AC 127 ms
77,800 KB
testcase_16 AC 39 ms
52,856 KB
testcase_17 AC 45 ms
60,720 KB
testcase_18 AC 131 ms
77,924 KB
testcase_19 AC 271 ms
85,416 KB
testcase_20 AC 270 ms
83,768 KB
testcase_21 AC 178 ms
80,964 KB
testcase_22 AC 355 ms
95,392 KB
testcase_23 AC 173 ms
78,656 KB
testcase_24 AC 183 ms
79,276 KB
testcase_25 AC 76 ms
74,628 KB
testcase_26 AC 40 ms
52,812 KB
testcase_27 AC 138 ms
78,064 KB
testcase_28 AC 289 ms
91,892 KB
testcase_29 AC 366 ms
95,108 KB
testcase_30 AC 381 ms
95,092 KB
testcase_31 AC 378 ms
95,408 KB
testcase_32 AC 162 ms
78,088 KB
testcase_33 AC 159 ms
77,992 KB
testcase_34 AC 160 ms
77,896 KB
testcase_35 AC 164 ms
78,312 KB
testcase_36 AC 155 ms
77,976 KB
testcase_37 AC 156 ms
78,104 KB
testcase_38 AC 343 ms
90,300 KB
testcase_39 AC 338 ms
90,108 KB
testcase_40 AC 347 ms
89,828 KB
testcase_41 AC 161 ms
78,140 KB
testcase_42 AC 157 ms
77,796 KB
testcase_43 AC 156 ms
77,916 KB
testcase_44 AC 344 ms
90,216 KB
testcase_45 AC 348 ms
90,216 KB
testcase_46 AC 341 ms
90,268 KB
testcase_47 AC 361 ms
90,552 KB
testcase_48 AC 348 ms
89,892 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10**6)
int1 = lambda x: int(x)-1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.buffer.readline())
def MI(): return map(int, sys.stdin.buffer.readline().split())
def MI1(): return map(int1, sys.stdin.buffer.readline().split())
def LI(): return list(map(int, sys.stdin.buffer.readline().split()))
def LI1(): return list(map(int1, sys.stdin.buffer.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def BI(): return sys.stdin.buffer.readline().rstrip()
def SI(): return sys.stdin.buffer.readline().rstrip().decode()
dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
inf = 10**16
md = 998244353
# md = 10**9+7

s = II()
n = II()
tt = [II() for _ in range(n)]

def ok(m):
    dp = [(-1, -1) for _ in range(1 << n)]
    dp[0] = (m, 0)

    def chmax(i, val):
        if val > dp[i]: dp[i] = val

    for bit in range(1 << n):
        pp, pt = dp[bit]
        if pp == -1: continue
        for i in range(n):
            if bit >> i & 1: continue
            if tt[i] <= pt:
                chmax(bit | 1 << i, (pp, pt-tt[i]))
            elif pp:
                chmax(bit | 1 << i, (pp-1, s-tt[i]))

    return dp[-1]!=(-1,-1)

l, r = 0, n
while l+1 < r:
    m = (l+r)//2
    if ok(m): r = m
    else: l = m

print(r)
0