結果

問題 No.108 トリプルカードコンプ
ユーザー tubo28tubo28
提出日時 2015-07-26 16:27:45
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 8 ms / 5,000 ms
コード長 753 bytes
コンパイル時間 1,084 ms
コンパイル使用メモリ 159,968 KB
実行使用メモリ 14,464 KB
最終ジャッジ日時 2024-07-08 14:07:51
合計ジャッジ時間 1,879 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
14,152 KB
testcase_01 AC 5 ms
14,396 KB
testcase_02 AC 4 ms
14,336 KB
testcase_03 AC 4 ms
14,360 KB
testcase_04 AC 3 ms
14,208 KB
testcase_05 AC 3 ms
14,236 KB
testcase_06 AC 3 ms
14,464 KB
testcase_07 AC 8 ms
14,316 KB
testcase_08 AC 4 ms
14,208 KB
testcase_09 AC 5 ms
14,368 KB
testcase_10 AC 4 ms
14,124 KB
testcase_11 AC 4 ms
14,208 KB
testcase_12 AC 4 ms
14,288 KB
testcase_13 AC 5 ms
14,336 KB
testcase_14 AC 4 ms
14,344 KB
testcase_15 AC 5 ms
14,236 KB
testcase_16 AC 5 ms
14,452 KB
testcase_17 AC 5 ms
14,232 KB
testcase_18 AC 7 ms
14,308 KB
testcase_19 AC 6 ms
14,328 KB
testcase_20 AC 5 ms
14,096 KB
testcase_21 AC 7 ms
14,332 KB
testcase_22 AC 4 ms
14,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define loop(i,a,b) for(ll i=(a);i<ll(b);i++)
#define rep(i,b) loop(i,0,b)

int n;

double dp[111][111][111];
double rec(int a, int b, int c){
    double & res = dp[a][b][c];
    if(res != -1) return res;
    int s = a+b+c;
    if(s == 0) return res = 0;
    res = 0;
    if(a) res += rec(a-1,b+1,c) * a/s;
    if(b) res += rec(a,b-1,c+1) * b/s;
    if(c) res += rec(a,b,c-1) * c/s;
    res += 1.*n/s;
    return res;
}

int main(){
    cin >> n;
    int a = 0, b = 0, c = 0;
    rep(i,n){
        int x;
        cin >> x;
        if(x==0) a++;
        if(x==1) b++;
        if(x==2) c++;
    }
    rep(i,111)rep(j,111)rep(k,111) dp[i][j][k] = -1;
    printf("%.10lf\n",rec(a,b,c));
}
0