結果

問題 No.2890 Chiffon
ユーザー 👑 seekworserseekworser
提出日時 2024-07-05 14:35:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 204 ms / 2,000 ms
コード長 708 bytes
コンパイル時間 405 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 155,020 KB
最終ジャッジ日時 2024-09-26 14:32:41
合計ジャッジ時間 6,590 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,840 KB
testcase_01 AC 41 ms
51,968 KB
testcase_02 AC 42 ms
51,840 KB
testcase_03 AC 42 ms
52,224 KB
testcase_04 AC 41 ms
51,712 KB
testcase_05 AC 42 ms
52,224 KB
testcase_06 AC 42 ms
51,712 KB
testcase_07 AC 41 ms
52,224 KB
testcase_08 AC 63 ms
65,408 KB
testcase_09 AC 41 ms
52,224 KB
testcase_10 AC 42 ms
52,224 KB
testcase_11 AC 47 ms
52,096 KB
testcase_12 AC 46 ms
52,096 KB
testcase_13 AC 46 ms
52,224 KB
testcase_14 AC 47 ms
52,224 KB
testcase_15 AC 47 ms
52,096 KB
testcase_16 AC 47 ms
51,840 KB
testcase_17 AC 47 ms
52,224 KB
testcase_18 AC 47 ms
52,096 KB
testcase_19 AC 46 ms
51,840 KB
testcase_20 AC 47 ms
52,096 KB
testcase_21 AC 46 ms
51,584 KB
testcase_22 AC 47 ms
51,584 KB
testcase_23 AC 204 ms
155,020 KB
testcase_24 AC 54 ms
59,008 KB
testcase_25 AC 52 ms
58,368 KB
testcase_26 AC 52 ms
57,856 KB
testcase_27 AC 58 ms
61,312 KB
testcase_28 AC 46 ms
52,096 KB
testcase_29 AC 52 ms
58,240 KB
testcase_30 AC 56 ms
59,136 KB
testcase_31 AC 60 ms
61,312 KB
testcase_32 AC 60 ms
61,824 KB
testcase_33 AC 57 ms
60,416 KB
testcase_34 AC 117 ms
107,520 KB
testcase_35 AC 120 ms
107,264 KB
testcase_36 AC 111 ms
107,136 KB
testcase_37 AC 103 ms
106,880 KB
testcase_38 AC 101 ms
107,264 KB
testcase_39 AC 101 ms
106,880 KB
testcase_40 AC 101 ms
107,392 KB
testcase_41 AC 101 ms
107,008 KB
testcase_42 AC 104 ms
107,008 KB
testcase_43 AC 103 ms
107,648 KB
testcase_44 AC 107 ms
108,160 KB
testcase_45 AC 122 ms
108,032 KB
testcase_46 AC 120 ms
107,904 KB
testcase_47 AC 120 ms
107,648 KB
testcase_48 AC 120 ms
108,288 KB
testcase_49 AC 120 ms
108,160 KB
testcase_50 AC 121 ms
107,904 KB
testcase_51 AC 121 ms
107,520 KB
testcase_52 AC 119 ms
107,520 KB
testcase_53 AC 115 ms
108,160 KB
testcase_54 AC 113 ms
74,240 KB
testcase_55 AC 92 ms
89,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k = map(int, input().split())
a = list(map(int, input().split()))
a.append(a[0] + 2*n)

p = 0
mn = 2*n
for i in range(k):
    if mn > a[i+1] - a[i]:
        p = i
        mn = a[i+1] - a[i]

an = [0] * (k)
for i in range(k):
    an[i] = (a[(p+i) % k] - a[p]) % (2*n)
an.append(2*n)

ans = 0
for s in range(1, an[1], 2):
    ok = 0
    ng = n
    while ng - ok > 1:
        mid = (ok + ng) // 2
        def check():
            x = 2*mid
            si = s
            for i in range(k-1):
                if si + x > an[i+2]: return False
                si = max(si+x, an[i+1]+1)
            return si + x <= s + 2*n
        if check(): ok = mid
        else: ng = mid
    ans = max(ans, ok*2)
print(ans)
0