結果

問題 No.576 E869120 and Rings
ユーザー ryoissyryoissy
提出日時 2017-10-14 17:34:13
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 622 ms / 1,500 ms
コード長 816 bytes
コンパイル時間 2,095 ms
コンパイル使用メモリ 164,088 KB
実行使用メモリ 16,412 KB
最終ジャッジ日時 2024-11-17 14:43:55
合計ジャッジ時間 13,000 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 559 ms
12,428 KB
testcase_01 AC 524 ms
12,328 KB
testcase_02 AC 622 ms
12,444 KB
testcase_03 AC 622 ms
12,412 KB
testcase_04 AC 553 ms
12,380 KB
testcase_05 AC 560 ms
12,444 KB
testcase_06 AC 519 ms
12,368 KB
testcase_07 AC 622 ms
12,220 KB
testcase_08 AC 427 ms
12,452 KB
testcase_09 AC 388 ms
12,604 KB
testcase_10 AC 432 ms
12,588 KB
testcase_11 AC 368 ms
12,260 KB
testcase_12 AC 360 ms
12,288 KB
testcase_13 AC 318 ms
12,712 KB
testcase_14 AC 403 ms
12,228 KB
testcase_15 AC 164 ms
12,412 KB
testcase_16 AC 348 ms
16,412 KB
testcase_17 AC 342 ms
12,420 KB
testcase_18 AC 373 ms
12,344 KB
testcase_19 AC 371 ms
12,408 KB
testcase_20 AC 319 ms
12,212 KB
testcase_21 AC 376 ms
12,336 KB
testcase_22 AC 2 ms
5,248 KB
testcase_23 AC 2 ms
5,248 KB
testcase_24 AC 2 ms
5,248 KB
testcase_25 AC 2 ms
5,248 KB
testcase_26 AC 1 ms
5,248 KB
testcase_27 AC 2 ms
5,248 KB
testcase_28 AC 2 ms
5,248 KB
testcase_29 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:35:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   35 |         scanf("%d%d",&n,&k);
      |         ~~~~~^~~~~~~~~~~~~~

ソースコード

diff #

#include <bits/stdc++.h>
#define MOD 1000000007LL
#define EPS 1e-10
using namespace std;
typedef long long ll;
typedef pair<double,int> P;

int n,k;
string str;
double sum[1000001];

bool C(double vv){
	for(int i=0;i<str.size();i++){
		sum[i+1]=sum[i]-vv;
		if(str[i]=='1')sum[i+1]+=1.0;
	}
	deque<P> mx;
	for(int i=k;i<=str.size();i++){
		while(mx.size()){
			if(mx[0].second<=i-n){
				mx.pop_front();
			}else break;
		}
		while(mx.size()){
			if(mx.back().first>sum[i-k])mx.pop_back();
			else break;
		}
		mx.push_back(P(sum[i-k],i-k));
		if(mx.size() && sum[i]-mx[0].first>0.0)return true;
	}
	return false;
}

int main(void){
	scanf("%d%d",&n,&k);
	cin >> str;
	str+=str;
	double l=0.0,r=1.0;
	for(int i=0;i<30;i++){
		double mid=(l+r)/2;
		if(C(mid))l=mid;
		else r=mid;
	}
	printf("%.10f\n",l);
	return 0;
}
0