結果

問題 No.576 E869120 and Rings
ユーザー kmjpkmjp
提出日時 2018-02-27 22:22:43
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 932 ms / 1,500 ms
コード長 1,362 bytes
コンパイル時間 2,748 ms
コンパイル使用メモリ 164,996 KB
実行使用メモリ 20,524 KB
最終ジャッジ日時 2024-11-30 11:58:40
合計ジャッジ時間 18,399 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 789 ms
15,660 KB
testcase_01 AC 753 ms
15,792 KB
testcase_02 AC 899 ms
15,664 KB
testcase_03 AC 895 ms
15,720 KB
testcase_04 AC 772 ms
15,668 KB
testcase_05 AC 789 ms
15,664 KB
testcase_06 AC 776 ms
15,664 KB
testcase_07 AC 932 ms
15,660 KB
testcase_08 AC 673 ms
14,380 KB
testcase_09 AC 569 ms
14,636 KB
testcase_10 AC 640 ms
14,508 KB
testcase_11 AC 602 ms
14,768 KB
testcase_12 AC 599 ms
14,768 KB
testcase_13 AC 525 ms
14,768 KB
testcase_14 AC 682 ms
20,524 KB
testcase_15 AC 328 ms
12,460 KB
testcase_16 AC 481 ms
12,208 KB
testcase_17 AC 670 ms
20,016 KB
testcase_18 AC 526 ms
14,640 KB
testcase_19 AC 532 ms
14,768 KB
testcase_20 AC 502 ms
14,636 KB
testcase_21 AC 531 ms
14,640 KB
testcase_22 AC 2 ms
5,248 KB
testcase_23 AC 2 ms
5,248 KB
testcase_24 AC 1 ms
5,248 KB
testcase_25 AC 2 ms
5,248 KB
testcase_26 AC 1 ms
5,248 KB
testcase_27 AC 1 ms
5,248 KB
testcase_28 AC 1 ms
5,248 KB
testcase_29 AC 1 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef signed long long ll;

#undef _P
#define _P(...) (void)printf(__VA_ARGS__)
#define FOR(x,to) for(x=0;x<(to);x++)
#define FORR(x,arr) for(auto& x:arr)
#define ITR(x,c) for(__typeof(c.begin()) x=c.begin();x!=c.end();x++)
#define ALL(a) (a.begin()),(a.end())
#define ZERO(a) memset(a,0,sizeof(a))
#define MINUS(a) memset(a,0xff,sizeof(a))
//-------------------------------------------------------

int N,K;
string S;
double B[1010101];

int ok(double v) {
	int i;
	FOR(i,N) B[i+1]=B[i]+S[i]-v;
	
	deque<pair<double,int>> D;
	for(i=1;i<=N/2;i++) {
		while(D.size() && D.back().first<B[i]) D.pop_back();
		D.push_back({B[i],i});
	}
	FOR(i,N/2) {
		while(D.size() && D.front().second<=i+K-1) D.pop_front();
		if(D.front().first>=B[i]) return 1;
		while(D.size() && D.back().first<B[i+N/2+1]) D.pop_back();
		D.push_back({B[i+N/2+1],i+N/2+1});
	}
	return 0;
}

void solve() {
	int i,j,k,l,r,x,y; string s;
	
	cin>>N>>K>>S;
	int NB=0;
	
	N+=N;
	S+=S;
	FOR(i,N) {
		S[i]-='0';
	}
	
	double L=0,R=1;
	FOR(i,40) {
		double M=(L+R)/2;
		if(ok(M)) L=M;
		else R=M;
	}
	
	_P("%.12lf\n",(L+R)/2);
	
}


int main(int argc,char** argv){
	string s;int i;
	if(argc==1) ios::sync_with_stdio(false), cin.tie(0);
	FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin);
	cout.tie(0); solve(); return 0;
}
0