結果

問題 No.2890 Chiffon
ユーザー mkawa2mkawa2
提出日時 2024-09-13 22:35:22
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,301 bytes
コンパイル時間 308 ms
コンパイル使用メモリ 82,276 KB
実行使用メモリ 163,568 KB
最終ジャッジ日時 2024-09-13 22:35:47
合計ジャッジ時間 5,501 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,144 KB
testcase_01 AC 37 ms
52,412 KB
testcase_02 AC 38 ms
52,944 KB
testcase_03 AC 38 ms
53,844 KB
testcase_04 AC 40 ms
52,900 KB
testcase_05 AC 39 ms
52,952 KB
testcase_06 AC 39 ms
53,092 KB
testcase_07 AC 38 ms
53,360 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 39 ms
52,400 KB
testcase_11 AC 38 ms
53,432 KB
testcase_12 AC 38 ms
52,268 KB
testcase_13 AC 38 ms
52,488 KB
testcase_14 AC 38 ms
52,824 KB
testcase_15 AC 38 ms
53,104 KB
testcase_16 WA -
testcase_17 AC 38 ms
53,664 KB
testcase_18 AC 38 ms
52,256 KB
testcase_19 AC 38 ms
54,060 KB
testcase_20 AC 37 ms
54,024 KB
testcase_21 AC 38 ms
52,832 KB
testcase_22 AC 160 ms
163,568 KB
testcase_23 AC 43 ms
59,896 KB
testcase_24 AC 41 ms
59,300 KB
testcase_25 AC 40 ms
59,280 KB
testcase_26 AC 44 ms
60,464 KB
testcase_27 AC 37 ms
53,196 KB
testcase_28 AC 42 ms
59,768 KB
testcase_29 AC 41 ms
59,836 KB
testcase_30 AC 45 ms
60,676 KB
testcase_31 AC 46 ms
61,020 KB
testcase_32 AC 45 ms
60,892 KB
testcase_33 AC 88 ms
109,064 KB
testcase_34 AC 90 ms
108,860 KB
testcase_35 AC 87 ms
108,776 KB
testcase_36 AC 88 ms
108,640 KB
testcase_37 AC 89 ms
108,912 KB
testcase_38 AC 87 ms
108,784 KB
testcase_39 AC 88 ms
109,336 KB
testcase_40 AC 89 ms
109,956 KB
testcase_41 AC 88 ms
108,584 KB
testcase_42 AC 91 ms
109,400 KB
testcase_43 AC 90 ms
109,872 KB
testcase_44 AC 89 ms
110,036 KB
testcase_45 AC 88 ms
109,216 KB
testcase_46 AC 90 ms
109,172 KB
testcase_47 AC 89 ms
108,864 KB
testcase_48 AC 89 ms
109,184 KB
testcase_49 AC 89 ms
108,704 KB
testcase_50 AC 88 ms
108,864 KB
testcase_51 AC 89 ms
110,188 KB
testcase_52 AC 89 ms
109,724 KB
testcase_53 AC 44 ms
60,764 KB
testcase_54 AC 75 ms
92,476 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]
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
    p=-inf
    for i in range(k):
        l,r=aa[i],aa[i+1]
        p=max(l+1,p+m)
        if p>=r:return False
    return True

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