結果

問題 No.463 魔法使いのすごろく🎲
ユーザー pekempeypekempey
提出日時 2016-12-14 01:10:06
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,688 bytes
コンパイル時間 1,483 ms
コンパイル使用メモリ 173,392 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-07 13:20:14
合計ジャッジ時間 27,878 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 602 ms
5,248 KB
testcase_01 AC 574 ms
5,376 KB
testcase_02 AC 600 ms
5,376 KB
testcase_03 AC 579 ms
5,376 KB
testcase_04 AC 600 ms
5,376 KB
testcase_05 AC 615 ms
5,376 KB
testcase_06 AC 535 ms
5,376 KB
testcase_07 AC 582 ms
5,376 KB
testcase_08 AC 597 ms
5,376 KB
testcase_09 AC 696 ms
5,376 KB
testcase_10 AC 594 ms
5,376 KB
testcase_11 AC 629 ms
5,376 KB
testcase_12 AC 596 ms
5,376 KB
testcase_13 AC 515 ms
5,376 KB
testcase_14 AC 678 ms
5,376 KB
testcase_15 AC 657 ms
5,376 KB
testcase_16 AC 605 ms
5,376 KB
testcase_17 AC 590 ms
5,376 KB
testcase_18 AC 562 ms
5,376 KB
testcase_19 AC 594 ms
5,376 KB
testcase_20 WA -
testcase_21 AC 635 ms
5,376 KB
testcase_22 AC 687 ms
5,376 KB
testcase_23 AC 649 ms
5,376 KB
testcase_24 AC 601 ms
5,376 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 680 ms
5,376 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 508 ms
5,376 KB
testcase_36 AC 572 ms
5,376 KB
testcase_37 AC 586 ms
5,376 KB
testcase_38 AC 516 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

struct SlideMin {
    deque<pair<double, int>> q;
    int width;
    int t = 0;

    SlideMin(int width) : width(width) {}

    void add(double x) {
        t++;
        while (!q.empty() && t - q.front().second >= width) {
            q.pop_front();
        }
        while (!q.empty() && q.back().first > x) {
            q.pop_back();
        }
        q.emplace_back(x, t);
    }

    double minimum() {
        return q.front().first;
    }
};

int main() {
    int n, m;
    cin >> n >> m;
    const int M = n * 2 - 2;

    vector<double> c(M * 2);
    for (int i = 1; i < n - 1; i++) {
        cin >> c[i];
    }
    for (int i = 0; i < n - 2; i++) {
        c[n + i] = c[n - 2 - i];
    }
    for (int i = 0; i < M; i++) {
        c[i + M] = c[i];
    }

    const int T = 50000000 / M;

    double mm = 1.0 / m;

    vector<double> E(M * 2), EE(M * 2);
    SlideMin q(m);
    q.add(0);
    double sumE = 0;
    double sumEE = 0;
    for (int i = 0; i < m; i++) {
        sumE += c[i];
        sumEE += c[i];
    }
    for (int ii = 0; ii < T; ii++) {
        for (int i = 0; i < M; i++) {
            E[i + M] = E[i];
            EE[i + M] = EE[i];
        }
        for (int i = M - 1; i >= 0; i--) {
            E[i] = 0;
            EE[i] = 0;
            if (i != n - 1) {
                E[i] = min(sumE * mm, q.minimum());
                EE[i] += sumEE * mm;
            }
            q.add(EE[i] + c[i]);
            sumE += E[i] + c[i];
            sumEE += EE[i] + c[i];
            sumE -= E[i + m] + c[i + m];
            sumEE -= EE[i + m] + c[i + m];
        }
    }

    printf("%.20f\n", (double)min(E[0], EE[0]));
}
0