結果

問題 No.576 E869120 and Rings
ユーザー 👑 kmjpkmjp
提出日時 2017-10-14 01:08:38
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 1,485 ms / 1,500 ms
コード長 1,363 bytes
コンパイル時間 1,431 ms
コンパイル使用メモリ 166,524 KB
実行使用メモリ 20,384 KB
最終ジャッジ日時 2024-04-28 18:03:00
合計ジャッジ時間 27,918 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,297 ms
15,664 KB
testcase_01 AC 1,285 ms
15,584 KB
testcase_02 AC 1,459 ms
15,792 KB
testcase_03 AC 1,485 ms
15,764 KB
testcase_04 AC 1,275 ms
15,660 KB
testcase_05 AC 1,282 ms
15,744 KB
testcase_06 AC 1,268 ms
15,664 KB
testcase_07 AC 1,469 ms
15,712 KB
testcase_08 AC 1,139 ms
14,260 KB
testcase_09 AC 945 ms
14,616 KB
testcase_10 AC 1,065 ms
14,388 KB
testcase_11 AC 1,018 ms
14,736 KB
testcase_12 AC 984 ms
14,744 KB
testcase_13 AC 857 ms
14,764 KB
testcase_14 AC 1,168 ms
20,384 KB
testcase_15 AC 593 ms
20,088 KB
testcase_16 AC 807 ms
12,448 KB
testcase_17 AC 1,179 ms
19,796 KB
testcase_18 AC 865 ms
14,636 KB
testcase_19 AC 863 ms
14,644 KB
testcase_20 AC 869 ms
14,512 KB
testcase_21 AC 859 ms
14,768 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 1 ms
5,376 KB
testcase_24 AC 1 ms
5,376 KB
testcase_25 AC 1 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 2 ms
5,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