結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 988 ms
6,816 KB
testcase_01 AC 906 ms
6,940 KB
testcase_02 AC 920 ms
6,940 KB
testcase_03 AC 859 ms
6,940 KB
testcase_04 AC 873 ms
6,944 KB
testcase_05 AC 924 ms
6,940 KB
testcase_06 AC 950 ms
6,944 KB
testcase_07 AC 853 ms
6,940 KB
testcase_08 AC 1,002 ms
6,944 KB
testcase_09 AC 866 ms
6,940 KB
testcase_10 AC 925 ms
6,940 KB
testcase_11 AC 964 ms
6,940 KB
testcase_12 AC 949 ms
6,944 KB
testcase_13 AC 1,119 ms
6,944 KB
testcase_14 AC 890 ms
6,940 KB
testcase_15 AC 898 ms
6,940 KB
testcase_16 AC 957 ms
6,944 KB
testcase_17 AC 898 ms
6,940 KB
testcase_18 AC 1,090 ms
6,940 KB
testcase_19 AC 977 ms
6,940 KB
testcase_20 WA -
testcase_21 AC 912 ms
6,944 KB
testcase_22 AC 1,026 ms
6,944 KB
testcase_23 AC 1,009 ms
6,940 KB
testcase_24 AC 844 ms
6,940 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 992 ms
6,940 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 1,126 ms
6,940 KB
testcase_36 AC 1,093 ms
6,944 KB
testcase_37 AC 898 ms
6,944 KB
testcase_38 AC 1,668 ms
6,940 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);
    for (int ii = 0; ii < T; ii++) {
        SlideMin q(m);
        double sumE = 0;
        double sumEE = 0;
        for (int i = 0; i < M; i++) {
            E[i + M] = E[i];
            EE[i + M] = EE[i];
            E[i] = 0;
            EE[i] = 0;
        }
        for (int i = m; i >= 1; i--) {
            sumE += E[M - 1 + i] + c[M - 1 + i];
            sumEE += EE[M - 1 + i] + c[M - 1 + i];
            q.add(EE[i] + c[i]);
        }
        for (int i = M - 1; i >= 0; i--) {
            if (i == n - 1) {
                E[i] = 0;
                EE[i] = 0;
            } else {
                E[i] += sumE * mm;
                EE[i] += sumEE * mm;
                E[i] = min(E[i], q.minimum());
            }
            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