結果

問題 No.463 魔法使いのすごろく🎲
ユーザー pekempeypekempey
提出日時 2016-12-14 01:16:42
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,689 bytes
コンパイル時間 2,043 ms
コンパイル使用メモリ 173,484 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-07 13:38:51
合計ジャッジ時間 57,173 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,328 ms
5,248 KB
testcase_01 AC 1,297 ms
5,376 KB
testcase_02 AC 1,330 ms
5,376 KB
testcase_03 AC 1,264 ms
5,376 KB
testcase_04 AC 1,351 ms
5,376 KB
testcase_05 AC 1,355 ms
5,376 KB
testcase_06 AC 1,185 ms
5,376 KB
testcase_07 AC 1,280 ms
5,376 KB
testcase_08 AC 1,299 ms
5,376 KB
testcase_09 AC 1,519 ms
5,376 KB
testcase_10 AC 1,310 ms
5,376 KB
testcase_11 AC 1,381 ms
5,376 KB
testcase_12 AC 1,351 ms
5,376 KB
testcase_13 AC 1,110 ms
5,376 KB
testcase_14 AC 1,414 ms
5,376 KB
testcase_15 AC 1,394 ms
5,376 KB
testcase_16 AC 1,286 ms
5,376 KB
testcase_17 AC 1,350 ms
5,376 KB
testcase_18 AC 1,251 ms
5,376 KB
testcase_19 AC 1,313 ms
5,376 KB
testcase_20 WA -
testcase_21 AC 1,393 ms
5,376 KB
testcase_22 AC 1,527 ms
5,376 KB
testcase_23 AC 1,411 ms
5,376 KB
testcase_24 AC 1,306 ms
5,376 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 1,470 ms
6,944 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 1,107 ms
5,376 KB
testcase_36 AC 1,241 ms
5,376 KB
testcase_37 AC 1,291 ms
5,376 KB
testcase_38 AC 1,092 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 = 100000000 / 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