結果

問題 No.463 魔法使いのすごろく🎲
ユーザー pekempeypekempey
提出日時 2016-12-14 00:35:01
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
実行時間 -
コード長 898 bytes
コンパイル時間 1,495 ms
コンパイル使用メモリ 168,940 KB
実行使用メモリ 628,628 KB
最終ジャッジ日時 2024-05-07 10:05:09
合計ジャッジ時間 16,541 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 232 ms
25,108 KB
testcase_01 AC 249 ms
60,380 KB
testcase_02 AC 245 ms
51,516 KB
testcase_03 MLE -
testcase_04 AC 253 ms
66,144 KB
testcase_05 AC 276 ms
107,536 KB
testcase_06 MLE -
testcase_07 MLE -
testcase_08 AC 234 ms
34,688 KB
testcase_09 AC 244 ms
48,092 KB
testcase_10 AC 252 ms
66,012 KB
testcase_11 AC 228 ms
18,108 KB
testcase_12 AC 231 ms
25,680 KB
testcase_13 MLE -
testcase_14 AC 236 ms
30,728 KB
testcase_15 AC 230 ms
22,452 KB
testcase_16 AC 277 ms
128,372 KB
testcase_17 AC 229 ms
19,808 KB
testcase_18 AC 357 ms
315,924 KB
testcase_19 AC 242 ms
51,376 KB
testcase_20 WA -
testcase_21 AC 228 ms
15,976 KB
testcase_22 AC 227 ms
9,844 KB
testcase_23 AC 227 ms
9,888 KB
testcase_24 MLE -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 227 ms
13,504 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 MLE -
testcase_36 AC 356 ms
315,980 KB
testcase_37 AC 300 ms
159,696 KB
testcase_38 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main() {
    int n, m;
    cin >> n >> m;

    vector<long double> c(n * 2 - 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];
    }

    const int T = 20000000 / (n * m);

    vector<long double> E(n * T), EE(n * T);
    for (int i = n * T - m - 1; i >= 0; i--) {
        if (i % (2 * n - 2) == n - 1) {
            E[i] = 0;
            EE[i] = 0;
        } else {
            long double mini = 1e100;
            for (int j = 1; j <= m; j++) {
                double d = c[(i + j) % (n * 2 - 2)];
                E[i] += (E[i + j] + d) / m;
                EE[i] += (EE[i + j] + d) / m;
                mini = min(mini, EE[i + j] + d);
            }
            E[i] = min(E[i], mini);
        }
    }

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