結果

問題 No.576 E869120 and Rings
ユーザー 👑 kmjpkmjp
提出日時 2017-10-14 01:08:38
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 1,250 ms / 1,500 ms
コード長 1,363 bytes
コンパイル時間 1,407 ms
コンパイル使用メモリ 151,240 KB
実行使用メモリ 20,268 KB
最終ジャッジ日時 2023-08-11 00:53:40
合計ジャッジ時間 22,805 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,104 ms
15,728 KB
testcase_01 AC 1,098 ms
15,812 KB
testcase_02 AC 1,238 ms
15,764 KB
testcase_03 AC 1,250 ms
15,768 KB
testcase_04 AC 1,088 ms
15,836 KB
testcase_05 AC 1,092 ms
15,772 KB
testcase_06 AC 1,092 ms
15,752 KB
testcase_07 AC 1,248 ms
15,820 KB
testcase_08 AC 831 ms
14,184 KB
testcase_09 AC 698 ms
14,468 KB
testcase_10 AC 785 ms
14,420 KB
testcase_11 AC 756 ms
14,756 KB
testcase_12 AC 728 ms
14,764 KB
testcase_13 AC 631 ms
14,780 KB
testcase_14 AC 810 ms
20,268 KB
testcase_15 AC 443 ms
20,088 KB
testcase_16 AC 566 ms
12,076 KB
testcase_17 AC 861 ms
19,720 KB
testcase_18 AC 658 ms
14,760 KB
testcase_19 AC 659 ms
14,760 KB
testcase_20 AC 661 ms
14,724 KB
testcase_21 AC 659 ms
14,764 KB
testcase_22 AC 1 ms
4,376 KB
testcase_23 AC 2 ms
4,380 KB
testcase_24 AC 2 ms
4,376 KB
testcase_25 AC 1 ms
4,376 KB
testcase_26 AC 2 ms
4,376 KB
testcase_27 AC 1 ms
4,376 KB
testcase_28 AC 1 ms
4,376 KB
testcase_29 AC 2 ms
4,376 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,60) {
		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