結果
| 問題 | No.76 回数の期待値で練習 |
| コンテスト | |
| ユーザー |
ocvret_
|
| 提出日時 | 2021-02-27 13:53:30 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 975 bytes |
| コンパイル時間 | 1,678 ms |
| コンパイル使用メモリ | 175,360 KB |
| 実行使用メモリ | 315,152 KB |
| 最終ジャッジ日時 | 2024-10-02 17:26:53 |
| 合計ジャッジ時間 | 8,113 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 1 TLE * 1 |
ソースコード
#include<bits/stdc++.h>
// #include<atcoder/all>
// #include<boost/multiprecision/cpp_int.hpp>
using namespace std;
// using namespace atcoder;
// using bint = boost::multiprecision::cpp_int;
using ll = long long;
using ull = unsigned long long;
using P = pair<int,int>;
#define rep(i,n) for(ll i = 0;i < (ll)n;i++)
#define ALL(x) (x).begin(),(x).end()
#define MOD 1000000007
int main(){
int T;
cin >> T;
vector<long double> p(10);
p[1]=1.0/12;
p[2]=2.0/12;
p[3]=3.0/12;
p[4]=1.0/12;
p[5]=3.0/12;
p[6]=2.0/12;
cout << fixed << setprecision(20);
while(T--){
int n;
cin >> n;
vector<vector<pair<int,long double>>> rv(n+1);
rep(i,n){
for(int j = 1;j <= 6;j++){
int s = i,t = min(i+j,1ll*n);
rv[t].push_back({s,p[j]});
}
}
vector<long double> back(n+1);
for(int i = n;i > 0;i--){
for(auto e : rv[i])back[e.first] += (back[i]+1)*e.second;
}
cout << back[0] << "\n";
}
return 0;
}
ocvret_