結果

問題 No.576 E869120 and Rings
ユーザー 👑 kmjpkmjp
提出日時 2018-02-27 22:22:43
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 902 ms / 1,500 ms
コード長 1,362 bytes
コンパイル時間 1,851 ms
コンパイル使用メモリ 167,300 KB
実行使用メモリ 20,516 KB
最終ジャッジ日時 2024-05-07 17:18:37
合計ジャッジ時間 18,682 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 792 ms
15,644 KB
testcase_01 AC 754 ms
15,680 KB
testcase_02 AC 876 ms
15,688 KB
testcase_03 AC 889 ms
15,704 KB
testcase_04 AC 794 ms
15,764 KB
testcase_05 AC 797 ms
15,652 KB
testcase_06 AC 795 ms
15,680 KB
testcase_07 AC 902 ms
15,644 KB
testcase_08 AC 694 ms
14,320 KB
testcase_09 AC 572 ms
14,600 KB
testcase_10 AC 647 ms
14,432 KB
testcase_11 AC 618 ms
14,672 KB
testcase_12 AC 610 ms
14,732 KB
testcase_13 AC 543 ms
14,748 KB
testcase_14 AC 704 ms
20,516 KB
testcase_15 AC 337 ms
12,184 KB
testcase_16 AC 474 ms
12,296 KB
testcase_17 AC 671 ms
19,856 KB
testcase_18 AC 538 ms
14,636 KB
testcase_19 AC 548 ms
14,680 KB
testcase_20 AC 522 ms
14,660 KB
testcase_21 AC 547 ms
14,732 KB
testcase_22 AC 2 ms
6,944 KB
testcase_23 AC 1 ms
6,944 KB
testcase_24 AC 2 ms
6,944 KB
testcase_25 AC 1 ms
6,944 KB
testcase_26 AC 2 ms
6,944 KB
testcase_27 AC 1 ms
6,944 KB
testcase_28 AC 2 ms
6,944 KB
testcase_29 AC 1 ms
6,944 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