結果

問題 No.1478 Simple Sugoroku
ユーザー taiga000629taiga000629
提出日時 2021-04-16 23:04:42
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 462 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,652 KB
実行使用メモリ 278,840 KB
最終ジャッジ日時 2024-07-03 03:40:04
合計ジャッジ時間 9,940 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
59,876 KB
testcase_01 AC 36 ms
52,856 KB
testcase_02 AC 35 ms
53,568 KB
testcase_03 AC 37 ms
53,000 KB
testcase_04 AC 35 ms
52,432 KB
testcase_05 AC 35 ms
52,588 KB
testcase_06 AC 34 ms
52,596 KB
testcase_07 AC 34 ms
52,680 KB
testcase_08 AC 33 ms
53,632 KB
testcase_09 AC 34 ms
53,004 KB
testcase_10 AC 36 ms
53,240 KB
testcase_11 AC 35 ms
52,868 KB
testcase_12 AC 35 ms
53,124 KB
testcase_13 AC 292 ms
112,304 KB
testcase_14 AC 280 ms
112,584 KB
testcase_15 AC 285 ms
112,056 KB
testcase_16 AC 283 ms
111,944 KB
testcase_17 AC 283 ms
111,788 KB
testcase_18 AC 290 ms
111,916 KB
testcase_19 AC 296 ms
112,060 KB
testcase_20 AC 290 ms
112,036 KB
testcase_21 AC 283 ms
112,048 KB
testcase_22 AC 282 ms
111,808 KB
testcase_23 AC 292 ms
112,576 KB
testcase_24 AC 317 ms
112,688 KB
testcase_25 AC 306 ms
112,708 KB
testcase_26 AC 303 ms
112,584 KB
testcase_27 AC 299 ms
112,192 KB
testcase_28 AC 250 ms
107,068 KB
testcase_29 TLE -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
b=[-1]+list(map(int,input().split()))
def f(s):
    dp=[10**10]*(m+1)
    dp[m]=n-b[m]
    for i in range(m-1,0,-1):
        dp[i]=min(dp[i+1]+b[i+1]-b[i],(s/m)+1)
    return sum(dp[i] for i in range(1,m+1))

mi=0
ma=n*m+1
while ma-mi>10**(-5):
    mid=(ma+mi)/2
    if f(mid)-mid<0:ma=mid
    else:mi=mid

s=ma
dp=[10**10]*(m+1)
dp[m]=n-b[m]
for i in range(m-1,0,-1):
    dp[i]=min(dp[i+1]+b[i+1]-b[i],s/m+1)
print(dp[1]+b[1]-1)



0