結果

問題 No.576 E869120 and Rings
ユーザー maspymaspy
提出日時 2020-05-09 01:07:15
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,131 bytes
コンパイル時間 521 ms
コンパイル使用メモリ 69,468 KB
実行使用メモリ 22,088 KB
最終ジャッジ日時 2024-07-04 02:38:47
合計ジャッジ時間 5,400 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 221 ms
20,128 KB
testcase_01 AC 199 ms
19,676 KB
testcase_02 AC 227 ms
19,740 KB
testcase_03 AC 243 ms
20,224 KB
testcase_04 AC 224 ms
20,420 KB
testcase_05 AC 224 ms
20,388 KB
testcase_06 AC 224 ms
21,084 KB
testcase_07 AC 231 ms
20,468 KB
testcase_08 AC 140 ms
19,964 KB
testcase_09 AC 136 ms
20,484 KB
testcase_10 AC 139 ms
21,108 KB
testcase_11 AC 127 ms
19,776 KB
testcase_12 AC 132 ms
21,080 KB
testcase_13 AC 123 ms
19,680 KB
testcase_14 AC 136 ms
19,884 KB
testcase_15 AC 96 ms
19,568 KB
testcase_16 AC 116 ms
22,088 KB
testcase_17 AC 128 ms
20,116 KB
testcase_18 AC 125 ms
19,532 KB
testcase_19 AC 127 ms
20,004 KB
testcase_20 AC 124 ms
20,400 KB
testcase_21 AC 125 ms
20,388 KB
testcase_22 AC 3 ms
7,880 KB
testcase_23 WA -
testcase_24 AC 2 ms
7,752 KB
testcase_25 AC 3 ms
7,624 KB
testcase_26 AC 3 ms
7,880 KB
testcase_27 AC 2 ms
7,628 KB
testcase_28 AC 2 ms
7,620 KB
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;

#define U 500010
double A[U + U];
double Acum[U + U];
int deq[U + U];
int N, K;

bool test(double x)
{
    Acum[0] = 0;
    for (int i = 0; i < N + N; i++)
    {
        Acum[i + 1] = Acum[i] + A[i] - x;
    }
    int l = 0;
    int r = 0;
    deq[0] = 0;
    for (int k = K; k <= N + N; k++)
    {
        while (deq[l] < k - N)
        {
            l++;
        }
        double x = Acum[k];
        if (x > Acum[deq[l]])
        {
            return true;
        }
        int i = k - K + 1;
        x = Acum[i];
        while (l <= r && Acum[deq[r]] > x)
        {
            r--;
        }
        r++;
        deq[r] = i;
    }
    return false;
}

int main()
{
    cin >> N >> K;
    for (int i = 0; i < N; i++)
    {
        char c;
        cin >> c;
        A[i] = c - 48.0;
        A[i + N] = c - 48.0;
    }
    double l = 0.0;
    double r = 1.0;
    for (int i = 0; i < 20; i++)
    {
        double m = (l + r) / 2;
        if (test(m))
        {
            l = m;
        }
        else
        {
            r = m;
        }
    }
    cout << l << endl;
    return 0;
}
0