結果

問題 No.576 E869120 and Rings
ユーザー 👑 hos.lyrichos.lyric
提出日時 2019-01-21 08:29:18
言語 D
(dmd 2.109.1)
結果
AC  
実行時間 811 ms / 1,500 ms
コード長 1,983 bytes
コンパイル時間 3,083 ms
コンパイル使用メモリ 162,804 KB
実行使用メモリ 26,152 KB
最終ジャッジ日時 2024-06-13 03:25:31
合計ジャッジ時間 16,476 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 733 ms
24,488 KB
testcase_01 AC 682 ms
25,208 KB
testcase_02 AC 759 ms
24,916 KB
testcase_03 AC 811 ms
25,048 KB
testcase_04 AC 729 ms
25,200 KB
testcase_05 AC 733 ms
25,096 KB
testcase_06 AC 732 ms
25,496 KB
testcase_07 AC 788 ms
25,740 KB
testcase_08 AC 436 ms
25,364 KB
testcase_09 AC 423 ms
25,088 KB
testcase_10 AC 425 ms
24,792 KB
testcase_11 AC 376 ms
24,992 KB
testcase_12 AC 394 ms
24,992 KB
testcase_13 AC 338 ms
25,056 KB
testcase_14 AC 433 ms
25,448 KB
testcase_15 AC 163 ms
25,108 KB
testcase_16 AC 302 ms
25,372 KB
testcase_17 AC 381 ms
26,132 KB
testcase_18 AC 363 ms
26,016 KB
testcase_19 AC 361 ms
26,152 KB
testcase_20 AC 342 ms
24,532 KB
testcase_21 AC 365 ms
25,368 KB
testcase_22 AC 1 ms
6,940 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 2 ms
6,944 KB
testcase_25 AC 1 ms
6,944 KB
testcase_26 AC 1 ms
6,944 KB
testcase_27 AC 1 ms
6,944 KB
testcase_28 AC 1 ms
6,940 KB
testcase_29 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.conv, std.stdio, std.string;
import std.algorithm, std.array, std.bigint, std.container, std.math, std.numeric, std.range, std.regex, std.typecons;
import core.bitop;

class EOFException : Throwable { this() { super("EOF"); } }
string[] tokens;
string readToken() { for (; tokens.empty; ) { if (stdin.eof) { throw new EOFException; } tokens = readln.split; } auto token = tokens.front; tokens.popFront; return token; }
int readInt() { return readToken.to!int; }
long readLong() { return readToken.to!long; }
real readReal() { return readToken.to!real; }

void chmin(T)(ref T t, in T f) { if (t > f) t = f; }
void chmax(T)(ref T t, in T f) { if (t < f) t = f; }

int binarySearch(T)(in T[] as, in bool delegate(T) test) { int low = -1, upp = cast(int)(as.length); for (; low + 1 < upp; ) { int mid = (low + upp) >> 1; (test(as[mid]) ? low : upp) = mid; } return upp; }
int lowerBound(T)(in T[] as, in T val) { return as.binarySearch((T a) => (a < val)); }
int upperBound(T)(in T[] as, in T val) { return as.binarySearch((T a) => (a <= val)); }


int N, K;
string A;

real[] sums;

// slide min
int qHead, qTail;
int[] q;

bool check(real r) {
  sums[0] = 0.0;
  foreach (i; 0 .. N * 2) {
    sums[i + 1] = sums[i] + ((A[i] == '1') ? (1.0 - r) : -r);
  }
  qHead = qTail = 0;
  foreach (i; K .. N * 2 + 1) {
    for (; qHead < qTail && sums[q[qTail - 1]] > sums[i - K]; --qTail) {}
    q[qTail++] = i - K;
    for (; qHead < qTail && q[qHead] < i - N; ++qHead) {}
    assert(qHead < qTail);
    if (sums[q[qHead]] <= sums[i]) {
      return true;
    }
  }
  return false;
}

void main() {
  try {
    for (; ; ) {
      N = readInt();
      K = readInt();
      A = readToken();
      A = A ~ A;
      sums = new real[N * 2 + 1];
      q = new int[N * 2 + 1];
      real lo = 0.0, hi = 1.0;
      foreach (_; 0 .. 20) {
        const mid = (lo + hi) / 2.0;
        (check(mid) ? lo : hi) = mid;
      }
      writefln("%.10f", lo);
    }
  } catch (EOFException e) {
  }
}
0