結果
問題 | No.1478 Simple Sugoroku |
ユーザー |
![]() |
提出日時 | 2021-04-16 20:26:53 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 554 bytes |
コンパイル時間 | 1,568 ms |
コンパイル使用メモリ | 168,468 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-02 22:41:21 |
合計ジャッジ時間 | 3,786 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 31 WA * 7 |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long int ll; typedef pair<ll,ll> P; typedef vector<ll> VI; typedef vector<VI> VVI; #define REP(i,n) for(int i=0;i<(n);i++) #define ALL(v) v.begin(),v.end() constexpr ll MOD=998244353; constexpr ll INF=2e18; int main(){ ll n, m; cin >> n >> m; VI b(m); REP(i,m) cin >> b[i]; reverse(ALL(b)); double ans=INF; ll sum=0; REP(i,m){ sum+=n-b[i]; ans=min(ans,(double)sum/(i+1)+m/(i+1)); } printf("%.10f\n",min(ans+b[m-1]-1,(double)n-1)); return 0; }