結果

問題 No.1478 Simple Sugoroku
ユーザー chineristACchineristAC
提出日時 2021-04-16 21:19:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 411 ms / 2,000 ms
コード長 717 bytes
コンパイル時間 244 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 234,704 KB
最終ジャッジ日時 2024-07-03 00:36:07
合計ジャッジ時間 13,558 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
55,936 KB
testcase_01 AC 54 ms
55,552 KB
testcase_02 AC 54 ms
55,808 KB
testcase_03 AC 53 ms
56,064 KB
testcase_04 AC 53 ms
56,064 KB
testcase_05 AC 54 ms
56,192 KB
testcase_06 AC 52 ms
55,808 KB
testcase_07 AC 54 ms
56,064 KB
testcase_08 AC 55 ms
56,192 KB
testcase_09 AC 53 ms
55,552 KB
testcase_10 AC 53 ms
56,064 KB
testcase_11 AC 54 ms
56,064 KB
testcase_12 AC 53 ms
55,808 KB
testcase_13 AC 384 ms
215,708 KB
testcase_14 AC 338 ms
188,448 KB
testcase_15 AC 361 ms
216,052 KB
testcase_16 AC 357 ms
215,968 KB
testcase_17 AC 362 ms
215,964 KB
testcase_18 AC 358 ms
215,844 KB
testcase_19 AC 363 ms
216,088 KB
testcase_20 AC 360 ms
216,100 KB
testcase_21 AC 357 ms
216,224 KB
testcase_22 AC 356 ms
216,232 KB
testcase_23 AC 348 ms
216,064 KB
testcase_24 AC 338 ms
216,188 KB
testcase_25 AC 367 ms
216,056 KB
testcase_26 AC 359 ms
216,184 KB
testcase_27 AC 363 ms
216,164 KB
testcase_28 AC 367 ms
234,704 KB
testcase_29 AC 347 ms
214,120 KB
testcase_30 AC 336 ms
207,032 KB
testcase_31 AC 322 ms
203,872 KB
testcase_32 AC 326 ms
202,716 KB
testcase_33 AC 345 ms
223,264 KB
testcase_34 AC 340 ms
223,288 KB
testcase_35 AC 341 ms
223,264 KB
testcase_36 AC 323 ms
222,904 KB
testcase_37 AC 388 ms
106,576 KB
testcase_38 AC 410 ms
106,424 KB
testcase_39 AC 409 ms
106,812 KB
testcase_40 AC 411 ms
106,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,random,bisect
from collections import deque,defaultdict
from heapq import heapify,heappop,heappush
from itertools import permutations
from math import gcd,log


N,M = map(int,input().split())
B = list(map(int,input().split()))

def cond(x):
    val = [0 for i in range(M)]
    val[-1] = min(1+x,N-B[-1])
    for i in range(M-2,-1,-1):
        val[i] = min(1+x,B[i+1]-B[i]+val[i+1])

    check = sum(val)/M
    return check>=x

ok = 0
ng = N
T = 100
while T:
    mid = (ok+ng)/2
    if cond(mid):
        ok = mid
    else:
        ng = mid
    T -= 1

x = ok
val = [0 for i in range(M)]
val[-1] = min(1+x,N-B[-1])
for i in range(M-2,-1,-1):
    val[i] = min(1+x,B[i+1]-B[i]+val[i+1])

print(val[0]+B[0]-1)
0