結果

問題 No.1478 Simple Sugoroku
ユーザー gojira_kugojira_ku
提出日時 2021-04-16 21:50:10
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 2,332 bytes
コンパイル時間 1,920 ms
コンパイル使用メモリ 198,928 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2023-09-16 00:15:31
合計ジャッジ時間 5,087 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 1 ms
4,376 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 AC 1 ms
4,376 KB
testcase_04 AC 1 ms
4,380 KB
testcase_05 AC 2 ms
4,380 KB
testcase_06 AC 1 ms
4,376 KB
testcase_07 AC 2 ms
4,380 KB
testcase_08 AC 2 ms
4,376 KB
testcase_09 AC 2 ms
4,376 KB
testcase_10 AC 1 ms
4,380 KB
testcase_11 AC 1 ms
4,376 KB
testcase_12 AC 2 ms
4,376 KB
testcase_13 AC 39 ms
5,160 KB
testcase_14 AC 38 ms
5,176 KB
testcase_15 AC 39 ms
5,100 KB
testcase_16 AC 40 ms
5,032 KB
testcase_17 AC 39 ms
4,976 KB
testcase_18 AC 38 ms
5,064 KB
testcase_19 AC 40 ms
5,164 KB
testcase_20 AC 40 ms
5,172 KB
testcase_21 AC 39 ms
5,088 KB
testcase_22 AC 40 ms
5,104 KB
testcase_23 AC 40 ms
5,064 KB
testcase_24 AC 40 ms
5,088 KB
testcase_25 AC 40 ms
5,096 KB
testcase_26 AC 40 ms
5,172 KB
testcase_27 AC 39 ms
4,968 KB
testcase_28 AC 28 ms
5,028 KB
testcase_29 AC 32 ms
5,032 KB
testcase_30 AC 32 ms
5,036 KB
testcase_31 AC 31 ms
5,024 KB
testcase_32 AC 31 ms
5,032 KB
testcase_33 AC 34 ms
5,248 KB
testcase_34 AC 34 ms
5,084 KB
testcase_35 AC 35 ms
5,100 KB
testcase_36 AC 34 ms
5,060 KB
testcase_37 AC 36 ms
5,084 KB
testcase_38 AC 37 ms
5,120 KB
testcase_39 AC 37 ms
5,084 KB
testcase_40 AC 37 ms
5,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _DEBUG
#include "bits/stdc++.h"
//#include <atcoder/all>
#define CHOOSE(a) CHOOSE2 a
#define CHOOSE2(a0,a1,a2,a3,a4,a5,x,...) x
#define debug_1(x1) cout<<#x1<<": "<<x1<<endl
#define debug_2(x1,x2) cout<<#x1<<": "<<x1<<", "#x2<<": "<<x2<<endl
#define debug_3(x1,x2,x3) cout<<#x1<<": "<<x1<<", "#x2<<": "<<x2<<", "#x3<<": "<<x3<<endl
#define debug_4(x1,x2,x3,x4) cout<<#x1<<": "<<x1<<", "#x2<<": "<<x2<<", "#x3<<": "<<x3<<", "#x4<<": "<<x4<<endl
#define debug_5(x1,x2,x3,x4,x5) cout<<#x1<<": "<<x1<<", "#x2<<": "<<x2<<", "#x3<<": "<<x3<<", "#x4<<": "<<x4<<", "#x5<<": "<<x5<<endl
#define debug_6(x1,x2,x3,x4,x5,x6) cout<<#x1<<": "<<x1<<", "#x2<<": "<<x2<<", "#x3<<": "<<x3<<", "#x4<<": "<<x4<<", "#x5<<": "<<x5<<", "#x6<<": "<<x6<<endl
#ifdef _DEBUG
#define debug(...) CHOOSE((__VA_ARGS__,debug_6,debug_5,debug_4,debug_3,debug_2,debug_1,~))(__VA_ARGS__)
#else
#define debug(...)
#endif
#define rep(index,num) for(int index=0;index<(int)num;index++)
#define rep1(index,num) for(int index=1;index<=(int)num;index++)
#define brep(index,num) for(int index=(int)num-1;index>=0;index--)
#define brep1(index,num) for(int index=(int)num;index>0;index--)
#define scan(argument) cin>>argument
#define prin(argument) cout<<argument<<endl
#define prind(argument) cout<<std::fixed<<setprecision(13)<<argument<<endl
#define kaigyo cout<<endl
#define eps 1e-7
#define mp(a1,a2) make_pair(a1,a2)
#define ALL(a) (a).begin(),(a).end()
#define rALL(a) (a).rbegin(),(a).rend()
#define puba(a) emplace_back(a)
#define pubamp(a,b) emplace_back(mp(a,b))
typedef long long ll;
typedef long double ld;
using namespace std;
//using namespace atcoder;
typedef pair<ll,ll> pll;
typedef pair<int,int> pint;
typedef vector<int> vint;
typedef vector<ll> vll;
typedef vector<pint> vpint;
typedef vector<pll> vpll;
template<class T> bool chmax(T &a, const T &b) { if (a<b) { a=b; return 1; } return 0; }
template<class T> bool chmin(T &a, const T &b) { if (a>b) { a=b; return 1; } return 0; }
ll INFl=(ll)1e+18+1;
int INF=1e+9+1;
ll x[100001];
ll ruix[100001];
int main(){
	ll N,M;
	scan(N>>M);
	rep(i,M) scan(x[i]);
	if(M==1){
		prin(N-1);
		return 0;
	}
	brep(i,M) ruix[i]=ruix[i+1]+x[i];
	ld warpkitaimin=INFl;
	rep1(k,M-1){
		ld warpkitai=N-(ld)(ruix[k]-k)/(M-k);
		chmin(warpkitaimin,warpkitai);
	}
	prind(min((ld)(N-1),x[0]+warpkitaimin));
	return 0;
}
0