結果

問題 No.576 E869120 and Rings
ユーザー rpy3cpprpy3cpp
提出日時 2017-10-14 23:05:45
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 465 ms / 1,500 ms
コード長 1,546 bytes
コンパイル時間 1,834 ms
コンパイル使用メモリ 175,440 KB
実行使用メモリ 27,764 KB
最終ジャッジ日時 2024-11-17 14:53:24
合計ジャッジ時間 10,172 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 427 ms
26,120 KB
testcase_01 AC 439 ms
26,256 KB
testcase_02 AC 454 ms
26,376 KB
testcase_03 AC 465 ms
26,200 KB
testcase_04 AC 417 ms
26,628 KB
testcase_05 AC 422 ms
26,264 KB
testcase_06 AC 438 ms
26,120 KB
testcase_07 AC 455 ms
26,504 KB
testcase_08 AC 271 ms
25,636 KB
testcase_09 AC 254 ms
25,444 KB
testcase_10 AC 263 ms
25,440 KB
testcase_11 AC 237 ms
25,908 KB
testcase_12 AC 246 ms
25,708 KB
testcase_13 AC 202 ms
25,020 KB
testcase_14 AC 260 ms
27,764 KB
testcase_15 AC 250 ms
27,572 KB
testcase_16 AC 190 ms
23,624 KB
testcase_17 AC 260 ms
27,636 KB
testcase_18 AC 221 ms
25,616 KB
testcase_19 AC 223 ms
25,568 KB
testcase_20 AC 225 ms
25,612 KB
testcase_21 AC 225 ms
25,736 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 <bits/stdc++.h>
using namespace std;

bool is_valid(double mid, int K, int N, const vector<double> & As){
    vector<double> Bs(2 * N, 0);
    for (int i = 0; i < N; ++i) Bs[i] = As[i] - mid;
    for (int i = 0; i < N; ++i) Bs[N + i] = Bs[i];
    vector<double> Cs(2 * N + 1, 0);
    for (int i = 0; i < 2 * N; ++i) Cs[i + 1] = Cs[i] + Bs[i];
    deque<pair<double, int>> window;
    for (int i = K; i <= N; ++i){
        while ((not window.empty()) and window.back().first < Cs[i]) window.pop_back();
        window.emplace_back(Cs[i], i);
    }
    if (window.front().first >= Cs[0]) return true;
    for (int i = 1; i < N; ++i){
        if (window.front().second < K + i) window.pop_front();
        while ((not window.empty()) and window.back().first < Cs[i + N]) window.pop_back();
        window.emplace_back(Cs[i + N], i + N);
        if (window.front().first >= Cs[i]) return true;
    }
    return false;
}


double solve(int K, int N, const vector<double> & As){
    double eps = 1e-7;
    double OK = 0.0;
    double NG = 1.0 + eps;
    while (OK + eps < NG){
        double mid = (OK + NG)/2.0;
        if (is_valid(mid, K, N, As)){
            OK = mid;
        }else{
            NG = mid;
        }
    }
    return OK;
}


int main() {
    cin.tie(0);
    ios::sync_with_stdio(false);
    int N, K;
    cin >> N >> K;
    string S;
    cin >> S;
    vector<double> As(N, 0);
    for (int i = 0; i < N; ++i) As[i] = (double)(S[i] - '0');
    cout.precision(8);
    cout << fixed << solve(K, N, As) << endl;
    return 0;
}
0