結果

問題 No.576 E869120 and Rings
ユーザー square1001square1001
提出日時 2017-10-12 17:10:26
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 276 ms / 1,500 ms
コード長 797 bytes
コンパイル時間 422 ms
コンパイル使用メモリ 55,656 KB
実行使用メモリ 14,336 KB
最終ジャッジ日時 2024-11-17 10:52:29
合計ジャッジ時間 5,792 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 251 ms
12,928 KB
testcase_01 AC 241 ms
13,056 KB
testcase_02 AC 270 ms
12,928 KB
testcase_03 AC 276 ms
12,928 KB
testcase_04 AC 249 ms
12,928 KB
testcase_05 AC 250 ms
12,928 KB
testcase_06 AC 253 ms
12,928 KB
testcase_07 AC 270 ms
12,928 KB
testcase_08 AC 153 ms
12,544 KB
testcase_09 AC 139 ms
12,672 KB
testcase_10 AC 151 ms
12,416 KB
testcase_11 AC 143 ms
12,544 KB
testcase_12 AC 147 ms
12,672 KB
testcase_13 AC 128 ms
12,544 KB
testcase_14 AC 136 ms
14,336 KB
testcase_15 AC 90 ms
11,520 KB
testcase_16 AC 102 ms
11,392 KB
testcase_17 AC 132 ms
14,208 KB
testcase_18 AC 139 ms
12,544 KB
testcase_19 AC 138 ms
12,672 KB
testcase_20 AC 136 ms
12,672 KB
testcase_21 AC 139 ms
12,544 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 1 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 < 20; i++) {
		double m = (l + r) * 0.5;
		if (solve(m)) l = m;
		else r = m;
	}
	printf("%.12lf\n", l);
	return 0;
}
0