結果

問題 No.301 サイコロで確率問題 (1)
ユーザー mamekinmamekin
提出日時 2016-02-19 23:48:04
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 978 ms / 1,000 ms
コード長 1,167 bytes
コンパイル時間 824 ms
コンパイル使用メモリ 91,904 KB
実行使用メモリ 4,348 KB
最終ジャッジ日時 2023-10-23 18:36:08
合計ジャッジ時間 3,347 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 978 ms
4,348 KB
testcase_01 AC 35 ms
4,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <iostream>
#include <sstream>
#include <fstream>
#include <iomanip>
#include <algorithm>
#include <cmath>
#include <string>
#include <vector>
#include <list>
#include <queue>
#include <stack>
#include <set>
#include <map>
#include <bitset>
#include <numeric>
#include <limits>
#include <climits>
#include <cfloat>
#include <functional>
using namespace std;

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

    while(--t >= 0){
        long long n;
        cin >> n;
        if(n > 10000){
            double ans = n + 5.0 / 3.0;
            printf("%.12f\n", ans);
            continue;
        }

        vector<pair<double, double> > dp(n+1);
        for(int i=1; i<=n; ++i){
            for(int j=i-6; j<=i-1; ++j){
                if(j < 0){
                    dp[i].first += 1.0 / 6.0;
                    dp[i].second += 1.0 / 6.0;
                }
                else{
                    dp[i].first += (dp[j].first + 1.0) / 6.0;
                    dp[i].second += dp[j].second / 6.0;
                }
            }
        }

        double ans = dp[n].first / (1 - dp[n].second);
        printf("%.12f\n", ans);
    }

    return 0;
}
0