結果
問題 | No.108 トリプルカードコンプ |
ユーザー | paruki |
提出日時 | 2016-10-28 00:32:40 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 43 ms / 5,000 ms |
コード長 | 1,433 bytes |
コンパイル時間 | 1,740 ms |
コンパイル使用メモリ | 167,156 KB |
実行使用メモリ | 10,496 KB |
最終ジャッジ日時 | 2024-11-24 05:02:20 |
合計ジャッジ時間 | 2,435 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 20 |
ソースコード
#include "bits/stdc++.h" using namespace std; #define FOR(i,j,k) for(int (i)=(j);(i)<(int)(k);++(i)) #define rep(i,j) FOR(i,0,j) #define each(x,y) for(auto &(x):(y)) #define mp make_pair #define all(x) (x).begin(),(x).end() #define debug(x) cout<<#x<<": "<<(x)<<endl #define smax(x,y) (x)=max((x),(y)) #define smin(x,y) (x)=min((x),(y)) #define MEM(x,y) memset((x),(y),sizeof (x)) #define sz(x) (int)(x).size() typedef long long ll; typedef pair<int, int> pii; typedef vector<int> vi; typedef vector<ll> vll; int N, A[100], cntNeed[4], vis[101][101][101]; double loop[101], memo[101][101][101]; double calc(int one, int two, int three) { double &res = memo[one][two][three]; if(vis[one][two][three]++)return res; int need = one + two + three; if(need == 0)return res=0; if(one > 0)res += calc(one - 1, two, three) * one; if(two > 0)res += calc(one + 1, two - 1, three)*two; if(three > 0)res += calc(one, two + 1, three - 1)*three; res /= need; res += 1 + loop[need]; return res; } int main(){ cin >> N; rep(i, N) { cin >> A[i]; cntNeed[3 - min(A[i], 3)]++; } FOR(i, 1, N) { double pw = 1, mul = (double)(N - i) / N, hit = 1-mul; rep(j, 10000) { loop[i] += j*pw; pw *= mul; } loop[i] *= hit; } double ans = calc(cntNeed[1], cntNeed[2], cntNeed[3]); cout << setprecision(20) << ans << endl; }