結果

問題 No.576 E869120 and Rings
ユーザー nebukuro09nebukuro09
提出日時 2018-06-21 16:53:18
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,220 ms / 1,500 ms
コード長 1,162 bytes
コンパイル時間 2,199 ms
コンパイル使用メモリ 207,704 KB
実行使用メモリ 17,732 KB
最終ジャッジ日時 2024-06-30 17:38:18
合計ジャッジ時間 20,767 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 973 ms
16,864 KB
testcase_01 AC 1,112 ms
17,116 KB
testcase_02 AC 1,203 ms
16,864 KB
testcase_03 AC 1,220 ms
17,116 KB
testcase_04 AC 950 ms
16,864 KB
testcase_05 AC 956 ms
16,984 KB
testcase_06 AC 1,098 ms
16,988 KB
testcase_07 AC 1,214 ms
16,992 KB
testcase_08 AC 657 ms
16,472 KB
testcase_09 AC 551 ms
16,476 KB
testcase_10 AC 624 ms
16,348 KB
testcase_11 AC 596 ms
16,604 KB
testcase_12 AC 575 ms
16,476 KB
testcase_13 AC 527 ms
16,220 KB
testcase_14 AC 557 ms
17,628 KB
testcase_15 AC 356 ms
17,500 KB
testcase_16 AC 389 ms
15,964 KB
testcase_17 AC 542 ms
17,732 KB
testcase_18 AC 569 ms
16,476 KB
testcase_19 AC 571 ms
16,472 KB
testcase_20 AC 514 ms
16,476 KB
testcase_21 AC 572 ms
16,476 KB
testcase_22 AC 3 ms
6,940 KB
testcase_23 AC 2 ms
6,944 KB
testcase_24 AC 2 ms
6,940 KB
testcase_25 AC 2 ms
6,944 KB
testcase_26 AC 2 ms
6,940 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 2 ms
6,944 KB
testcase_29 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define REP(i,n) for (int i=0;i<(n);i++)
#define REP2(i,m,n) for (int i=m;i<(n);i++)
typedef long long ll;
typedef long double ld;
const ll MOD = 1000000007;

int N, K;
double A[501010];
double B[1010100];

bool check(double p) {
    B[0] = 0;
    REP(i, 2*N) B[i+1] = B[i] + A[i%N] - p;
    deque<double> q;
    
    REP2(i, K-1, N) {
        while (!q.empty() && q.back() < B[i+1])
            q.pop_back();
        q.push_back(B[i+1]);
    }
    
    if (q.front() >= B[0])
        return true;
    
    REP2(i, 1, N) {
        if (q.front() == B[i+K-1])
            q.pop_front();
        while (!q.empty() && q.back() < B[i+N])
            q.pop_back();
        q.push_back(B[i+N]);
        if (q.front() >= B[i])
            return true;
    }

    return false;
}

int main() {
    cin.tie(0);
    ios::sync_with_stdio(false);

    cin >> N >> K;
    string S; cin >> S;
    REP(i, N) A[i] = S[i] - '0';

    double hi = 1.0;
    double lo = 0.0;
    REP(_, 80) {
        double mid = (hi + lo) / 2;
        (check(mid) ? lo : hi) = mid;
    }

    cout.precision(20);
    cout << fixed  << hi << endl;    
}
0