結果
問題 | No.301 サイコロで確率問題 (1) |
ユーザー | firiexp |
提出日時 | 2019-11-22 00:48:52 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 38 ms / 1,000 ms |
コード長 | 1,537 bytes |
コンパイル時間 | 974 ms |
コンパイル使用メモリ | 97,708 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-15 19:16:28 |
合計ジャッジ時間 | 1,733 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 31 ms
5,248 KB |
testcase_01 | AC | 38 ms
5,248 KB |
ソースコード
#include <limits> #include <iostream> #include <algorithm> #include <iomanip> #include <map> #include <set> #include <queue> #include <stack> #include <numeric> #include <bitset> #include <cmath> static const int MOD = 1000000007; using ll = long long; using namespace std; template<class T> constexpr T INF = ::numeric_limits<T>::max()/32*15+208; template <class T> ostream& operator<<(ostream& os, vector<T> v) { os << "{"; for (int i = 0; i < v.size(); ++i) { if(i) os << ", "; os << v[i]; } return os << "}"; } template <class L, class R> ostream& operator<<(ostream& os, pair<L, R> p) { return os << "{" << p.first << ", " << p.second << "}"; } int main() { int t; cin >> t; while(t--){ ll n; cin >> n; if(n <= 100){ long double x = 0, p = 0; vector<long double> dp1(n+1), dp2(n+1); dp1[0] = 1; for (int i = 0; i < n; ++i) { for (int j = 1; j <= 6; ++j) { if(i+j > n){ x += dp1[i]/6; p += (dp2[i]/dp1[i]+1)*dp1[i]/6; }else { dp1[i+j] += dp1[i]/6; dp2[i+j] += (dp2[i]/dp1[i]+1)*dp1[i]/6; } } } p /= x; long double q = dp2.back()/dp1.back(); printf("%.15Lf\n", (q*x-p*x-q)/(x-1)); }else { printf("%.15Lf\n", n+5.0L/3); } } return 0; }