結果

問題 No.576 E869120 and Rings
ユーザー square1001square1001
提出日時 2017-10-11 21:56:37
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 541 ms / 1,500 ms
コード長 797 bytes
コンパイル時間 423 ms
コンパイル使用メモリ 55,656 KB
実行使用メモリ 14,464 KB
最終ジャッジ日時 2024-11-17 09:54:08
合計ジャッジ時間 9,522 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 482 ms
12,928 KB
testcase_01 AC 470 ms
13,056 KB
testcase_02 AC 531 ms
12,928 KB
testcase_03 AC 537 ms
13,056 KB
testcase_04 AC 472 ms
12,928 KB
testcase_05 AC 475 ms
13,056 KB
testcase_06 AC 481 ms
13,056 KB
testcase_07 AC 541 ms
12,928 KB
testcase_08 AC 303 ms
12,416 KB
testcase_09 AC 262 ms
12,544 KB
testcase_10 AC 292 ms
12,416 KB
testcase_11 AC 282 ms
12,544 KB
testcase_12 AC 280 ms
12,544 KB
testcase_13 AC 243 ms
12,416 KB
testcase_14 AC 257 ms
14,464 KB
testcase_15 AC 170 ms
11,520 KB
testcase_16 AC 196 ms
11,520 KB
testcase_17 AC 253 ms
14,336 KB
testcase_18 AC 264 ms
12,544 KB
testcase_19 AC 263 ms
12,544 KB
testcase_20 AC 261 ms
12,672 KB
testcase_21 AC 263 ms
12,672 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 2 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
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <string>
#include <algorithm>
using namespace std;
int N, M, deq[1000009]; double vs[1000009]; char s[500009];
bool solve(double x) {
	int ps = 0;
	for (int i = 1; i <= 2 * N; i++) {
		ps += s[(i - 1) % N] - 48;
		vs[i] = ps - x * i;
	}
	int l = 0, r = 0;
	for (int i = M; i < N; i++) {
		while (l < r && vs[deq[r - 1]] < vs[i]) r--;
		deq[r++] = i;
	}
	for (int i = 0; i < N; i++) {
		while (l < r && vs[deq[r - 1]] < vs[i + N]) r--;
		deq[r++] = i + N;
		if (vs[deq[l]] >= vs[i] - 1.0e-12) return true;
		if (deq[l] == i + M) l++;
	}
	return false;
}
int main() {
	scanf("%d %d", &N, &M);
	scanf("%s", s);
	double l = 0.0, r = 1.0;
	for (int i = 0; i < 40; i++) {
		double m = (l + r) * 0.5;
		if (solve(m)) l = m;
		else r = m;
	}
	printf("%.12lf\n", l);
	return 0;
}
0