結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 293 ms
5,248 KB
testcase_01 AC 340 ms
5,376 KB
testcase_02 AC 328 ms
5,376 KB
testcase_03 AC 847 ms
5,376 KB
testcase_04 AC 354 ms
5,376 KB
testcase_05 AC 422 ms
5,376 KB
testcase_06 AC 514 ms
5,376 KB
testcase_07 AC 974 ms
5,376 KB
testcase_08 AC 299 ms
5,376 KB
testcase_09 AC 338 ms
5,376 KB
testcase_10 AC 343 ms
5,376 KB
testcase_11 AC 288 ms
5,376 KB
testcase_12 AC 297 ms
5,376 KB
testcase_13 AC 262 ms
5,376 KB
testcase_14 AC 309 ms
5,376 KB
testcase_15 AC 296 ms
5,376 KB
testcase_16 AC 387 ms
5,376 KB
testcase_17 AC 294 ms
5,376 KB
testcase_18 AC 409 ms
5,376 KB
testcase_19 AC 318 ms
5,376 KB
testcase_20 WA -
testcase_21 AC 287 ms
5,376 KB
testcase_22 AC 279 ms
5,376 KB
testcase_23 AC 279 ms
5,376 KB
testcase_24 AC 1,132 ms
5,376 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 284 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 263 ms
5,376 KB
testcase_36 AC 409 ms
5,376 KB
testcase_37 AC 446 ms
5,376 KB
testcase_38 AC 178 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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 = 40000000 / (n * m);

    vector<double> E(M * 2), EE(M * 2);
    for (int ii = 0; ii < T; ii++) {
        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 - 1; i >= 0; i--) {
            if (i == n - 1) {
                E[i] = 0;
                EE[i] = 0;
            } else {
                double mini = 1e100;
                for (int j = 1; j <= m; j++) {
                    double d = c[i + j];
                    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