結果
問題 | No.108 トリプルカードコンプ |
ユーザー | chikkun0310 |
提出日時 | 2020-04-07 10:04:08 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,438 bytes |
コンパイル時間 | 1,477 ms |
コンパイル使用メモリ | 167,756 KB |
実行使用メモリ | 10,140 KB |
最終ジャッジ日時 | 2024-07-07 10:55:05 |
合計ジャッジ時間 | 8,167 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | TLE | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; //#include <boost/multiprecision/cpp_ll.hpp> //typedef boost::multiprecision::cpp_ll ll; typedef long double dd; #define i_7 (ll)(1E9+7) //#define i_7 998244353 #define i_5 i_7-2 ll mod(ll a){ ll c=a%i_7; if(c>=0)return c; return c+i_7; } typedef pair<ll,ll> l_l; ll inf=(ll)1E16; #define rep(i,l,r) for(ll i=l;i<=r;i++) #define pb push_back ll max(ll a,ll b){if(a<b)return b;else return a;} ll min(ll a,ll b){if(a>b)return b;else return a;} void Max(ll &pos,ll val){pos=max(pos,val);}//Max(dp[n],dp[n-1]); void Min(ll &pos,ll val){pos=min(pos,val);} void Add(ll &pos,ll val){pos=mod(pos+val);} dd EPS=1E-9; #define endl "\n" #define fastio ios::sync_with_stdio(false); cin.tie(0); cout.tie(0); ll n; double memo[101][101][101]; double hoge(ll i,ll j,ll k){ if(i<0 || j<0 || k<0)return 0; if(i+j+k==0)return 0; double ans=0; ans+=((hoge(i-1,j+1,k)+1)*(double)i); ans+=((hoge(i,j-1,k+1)+1)*(double)j); ans+=((hoge(i,j,k-1)+1)*(double)k); ans+=(double)(n-i-j-k); ans/=(double)(i+j+k); return memo[i][j][k]=ans; } int main(){fastio cin>>n; ll a[n]; ll b[4];rep(i,0,3)b[i]=0; rep(i,0,n-1){ cin>>a[i]; if(a[i]>=3){ b[3]++; }else{ b[a[i]]++; } } double ans=hoge(b[0],b[1],b[2]); cout<<setprecision(12)<<ans<<endl; return 0; }