結果
問題 | No.1478 Simple Sugoroku |
ユーザー |
|
提出日時 | 2022-10-15 08:57:46 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 36 ms / 2,000 ms |
コード長 | 648 bytes |
コンパイル時間 | 1,892 ms |
コンパイル使用メモリ | 196,120 KB |
最終ジャッジ日時 | 2025-02-08 06:21:41 |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 38 |
ソースコード
#include <bits/stdc++.h> #define rep(i,n) for(int i = 0; i < (n); i++) using namespace std; typedef long long ll; int main(){ cin.tie(0); ios::sync_with_stdio(0); using ld = long double; ll N,M; cin >> N >> M; vector<ll> B(M); rep(i,M) cin >> B[i]; vector<ll> B_sum(M + 1, 0); rep(i,M) B_sum[i + 1] += B_sum[i] + B[i]; ld ans = 1e18; rep(i,M) { ld cur = 0; cur += M / ld(M - i); cur += ((M - i) * N - (B_sum[M] - B_sum[i])) / ld(M - i); ans = min(ans, cur); } ans += B[0] - 1.0; ans = min(ans, ld(N - 1)); cout << fixed << setprecision(20) << ans << endl; }