結果

問題 No.75 回数の期待値の問題
ユーザー KyutatsuKyutatsu
提出日時 2025-01-02 18:32:32
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 4 ms / 5,000 ms
コード長 799 bytes
コンパイル時間 5,060 ms
コンパイル使用メモリ 275,508 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2025-01-02 18:32:39
合計ジャッジ時間 4,728 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1 ms
6,820 KB
testcase_02 AC 1 ms
6,820 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 1 ms
6,816 KB
testcase_05 AC 1 ms
6,820 KB
testcase_06 AC 1 ms
6,816 KB
testcase_07 AC 1 ms
6,816 KB
testcase_08 AC 1 ms
6,820 KB
testcase_09 AC 1 ms
6,820 KB
testcase_10 AC 2 ms
6,820 KB
testcase_11 AC 2 ms
6,816 KB
testcase_12 AC 2 ms
6,820 KB
testcase_13 AC 1 ms
6,820 KB
testcase_14 AC 2 ms
6,816 KB
testcase_15 AC 2 ms
6,816 KB
testcase_16 AC 2 ms
6,816 KB
testcase_17 AC 3 ms
6,816 KB
testcase_18 AC 4 ms
6,820 KB
testcase_19 AC 4 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <iomanip>
#include <functional>
#include <sstream>
#include <bit>
#include <numeric>

using namespace std;

int main() {
    int K; cin >> K;

    // DP[ 状態S ] := からゴールするまでの期待回数
    vector<double> DP(K+1);
    DP[K] = 0;

    // ガウス・ザイデルとかいうのでやってみる
    for (int n=0;n<1000;n++) { // 妥当なループ数いくつ?
        for (int i=K-1;0<=i;i--) {
            double tmp = 1.0;
            for (int j=1;j<=6;j++) {
                if (i+j <= K)
                    tmp += DP[i+j] * (double)(1.0/6.0);
                else
                    tmp += DP[0] * (double)(1.0/6.0);  
            }
            DP[i] = tmp;
        }
    }
    cout << fixed << setprecision(12) << DP[0] << endl;
}
0