結果

問題 No.108 トリプルカードコンプ
ユーザー tottoripapertottoripaper
提出日時 2019-03-08 14:27:40
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 10 ms / 5,000 ms
コード長 1,191 bytes
コンパイル時間 1,595 ms
コンパイル使用メモリ 168,224 KB
実行使用メモリ 11,868 KB
最終ジャッジ日時 2024-06-23 15:01:33
合計ジャッジ時間 2,629 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
11,752 KB
testcase_01 AC 5 ms
11,648 KB
testcase_02 AC 5 ms
11,752 KB
testcase_03 AC 5 ms
11,684 KB
testcase_04 AC 5 ms
11,712 KB
testcase_05 AC 5 ms
11,680 KB
testcase_06 AC 5 ms
11,708 KB
testcase_07 AC 10 ms
11,804 KB
testcase_08 AC 5 ms
11,832 KB
testcase_09 AC 5 ms
11,656 KB
testcase_10 AC 5 ms
11,820 KB
testcase_11 AC 5 ms
11,828 KB
testcase_12 AC 5 ms
11,744 KB
testcase_13 AC 6 ms
11,792 KB
testcase_14 AC 5 ms
11,864 KB
testcase_15 AC 5 ms
11,768 KB
testcase_16 AC 6 ms
11,868 KB
testcase_17 AC 6 ms
11,728 KB
testcase_18 AC 9 ms
11,720 KB
testcase_19 AC 7 ms
11,660 KB
testcase_20 AC 6 ms
11,620 KB
testcase_21 AC 8 ms
11,704 KB
testcase_22 AC 4 ms
11,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#define fst(t) std::get<0>(t)
#define snd(t) std::get<1>(t)
#define thd(t) std::get<2>(t)
#define unless(p) if(!(p))
#define until(p) while(!(p))

using ll = std::int64_t;
using P = std::tuple<int,int>;

int N;
int A[100];
double dp[101][101][101];

double rec(int n0, int n1, int n2){
    if(n0 + n1 + n2 == 0){
        return 0;
    }

    if(dp[n0][n1][n2] != -1){
        return dp[n0][n1][n2];
    }

    double p0 = 1.0 * n0 / N,
        p1 = 1.0 * n1 / N,
        p2 = 1.0 * n2 / N,
        p = p0 + p1 + p2;
    
    double e = 1;

    if(n0 > 0){
        e += p0 * rec(n0 - 1, n1 + 1, n2);
    }

    if(n1 > 0){
        e += p1 * rec(n0, n1 - 1, n2 + 1);
    }

    if(n2 > 0){
        e += p2 * rec(n0, n1, n2 - 1);
    }

    e /= p;

    return dp[n0][n1][n2] = e;
}

int main(){
    std::cin.tie(nullptr);
    std::ios::sync_with_stdio(false);

    std::cin >> N;

    for(int i=0;i<N;++i){
        std::cin >> A[i];
    }

    std::fill(&dp[0][0][0], &dp[0][0][0] + 101 * 101 * 101, -1);

    double e = rec(std::count(A, A + N, 0),
                   std::count(A, A + N, 1),
                   std::count(A, A + N, 2));
    printf("%.10f\n", e);
}
0