結果

問題 No.576 E869120 and Rings
ユーザー pekempeypekempey
提出日時 2017-10-14 01:32:23
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 983 bytes
コンパイル時間 1,010 ms
コンパイル使用メモリ 78,652 KB
実行使用メモリ 40,552 KB
最終ジャッジ日時 2024-11-17 12:26:29
合計ジャッジ時間 59,815 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 TLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
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
36,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <iostream>
#include <algorithm>
#include <vector>
#include <string>
#include <set>

// blue[l,r)/(r-l
// blue[l,r)/(r-l) >= x
// blue[l,r] >= x(r-l)
// blue[r]-blue[l] >= xr - xl
// blue[r]-xr >= blue[l] >= xl
// r-l>=K

int main() {
  int n, k;
  std::cin >> n >> k;

  std::string s;
  std::cin >> s;
  s += s;

  std::vector<int> sum(n * 2 + 1);
  for (int i = 0; i < n * 2; i++) {
    sum[i + 1] = sum[i] + (s[i % n] == '1');
  }

  double ok = 0;
  double ng = 1;
  for (int ii = 0; ii < 20; ii++) {
    double mid = (ok + ng) / 2;

    std::multiset<double> ms;
    for (int i = k; i <= n; i++) {
      ms.insert(sum[i] - i * mid);
    }

    bool found = false;
    for (int i = 0; i < n; i++) {
      if (sum[i] - i * mid <= *ms.rbegin()) {
        found = true;
      }
      ms.erase(ms.find(sum[i + k] - mid * (i + k)));
      ms.insert(sum[i + n + 1] - mid * (i + n + 1));
    }
    
    (found ? ok : ng) = mid;
  }

  printf("%.20f\n", ok);
}
0