結果

問題 No.2890 Chiffon
ユーザー mkawa2mkawa2
提出日時 2024-09-13 23:02:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 229 ms / 2,000 ms
コード長 1,565 bytes
コンパイル時間 238 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 249,344 KB
最終ジャッジ日時 2024-09-26 14:41:29
合計ジャッジ時間 6,873 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,336 KB
testcase_01 AC 44 ms
52,224 KB
testcase_02 AC 37 ms
52,608 KB
testcase_03 AC 38 ms
52,584 KB
testcase_04 AC 36 ms
52,352 KB
testcase_05 AC 35 ms
52,352 KB
testcase_06 AC 35 ms
52,608 KB
testcase_07 AC 35 ms
52,096 KB
testcase_08 AC 229 ms
249,344 KB
testcase_09 AC 36 ms
52,480 KB
testcase_10 AC 36 ms
52,264 KB
testcase_11 AC 37 ms
52,608 KB
testcase_12 AC 34 ms
52,096 KB
testcase_13 AC 34 ms
52,352 KB
testcase_14 AC 34 ms
52,608 KB
testcase_15 AC 33 ms
52,096 KB
testcase_16 AC 34 ms
52,224 KB
testcase_17 AC 35 ms
52,736 KB
testcase_18 AC 36 ms
52,480 KB
testcase_19 AC 35 ms
52,736 KB
testcase_20 AC 35 ms
52,096 KB
testcase_21 AC 34 ms
52,352 KB
testcase_22 AC 36 ms
52,480 KB
testcase_23 AC 184 ms
205,576 KB
testcase_24 AC 125 ms
179,456 KB
testcase_25 AC 96 ms
144,000 KB
testcase_26 AC 158 ms
245,376 KB
testcase_27 AC 147 ms
233,088 KB
testcase_28 AC 53 ms
69,760 KB
testcase_29 AC 56 ms
75,264 KB
testcase_30 AC 113 ms
176,128 KB
testcase_31 AC 165 ms
246,656 KB
testcase_32 AC 130 ms
223,360 KB
testcase_33 AC 50 ms
68,864 KB
testcase_34 AC 115 ms
151,936 KB
testcase_35 AC 122 ms
128,760 KB
testcase_36 AC 121 ms
128,316 KB
testcase_37 AC 122 ms
128,256 KB
testcase_38 AC 122 ms
128,512 KB
testcase_39 AC 120 ms
128,680 KB
testcase_40 AC 114 ms
152,432 KB
testcase_41 AC 123 ms
128,640 KB
testcase_42 AC 113 ms
151,808 KB
testcase_43 AC 115 ms
152,192 KB
testcase_44 AC 127 ms
128,384 KB
testcase_45 AC 125 ms
128,776 KB
testcase_46 AC 127 ms
128,808 KB
testcase_47 AC 123 ms
128,560 KB
testcase_48 AC 125 ms
128,544 KB
testcase_49 AC 130 ms
128,692 KB
testcase_50 AC 127 ms
128,340 KB
testcase_51 AC 127 ms
128,640 KB
testcase_52 AC 133 ms
129,152 KB
testcase_53 AC 122 ms
128,768 KB
testcase_54 AC 187 ms
237,184 KB
testcase_55 AC 101 ms
120,692 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
# sys.set_int_max_str_digits(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()

dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
# inf = -1-(-1 << 31)
inf = -1-(-1 << 62)

md = 10**9+7
# md = 998244353

n,k=LI()
aa=LI()

n2=n*2
aa+=[a+n2 for a in aa[:2]]
# si=max(range(k),key=lambda i:(aa[i]-aa[i-1])%n2)
# aa=aa[si:si+k+1]
# print(aa)

def binary_search(l, r, minimize):
    if minimize: l -= 1
    else: r += 1
    while l+1 < r:
        m = (l+r)//2
        if ok(m) ^ minimize: l = m
        else: r = m
    if minimize: return r
    return l

def ok(m):
    m*=2
    to=[inf]*n2*2
    for j in range(aa[k-1]+1,aa[k],2):
        nj=max(j+m,aa[k]+1)
        if nj>=aa[k+1]:continue
        to[j]=nj
    for i in range(k-1)[::-1]:
        l,r,r2=aa[i],aa[i+1],aa[i+2]
        for j in range(l+1,r,2):
            nj=max(r+1,j+m)
            if nj>=r2:continue
            to[j]=to[nj]
            if i==0 and to[j]<=j+n2:return True
    return False

ans=binary_search(0,n//k+1,False)*2
print(ans)
0