結果
問題 | No.108 トリプルカードコンプ |
ユーザー | A Benzness |
提出日時 | 2023-06-26 13:43:54 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,233 bytes |
コンパイル時間 | 579 ms |
コンパイル使用メモリ | 70,228 KB |
実行使用メモリ | 14,168 KB |
最終ジャッジ日時 | 2024-07-03 08:43:48 |
合計ジャッジ時間 | 1,667 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 5 ms
13,180 KB |
testcase_11 | AC | 5 ms
13,180 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
ソースコード
#include <iostream> #include <cmath> #include <math.h> /** 8 3 4 5 6 7 8 9 10 */ int N; double dp[110][110][110]; int cnt[4]; double solve(int x, int y, int z) { // memoization if (dp[x][y][z] != -1) return dp[x][y][z]; dp[x][y][z] = 0; // 2枚以下しかもっていないものが出るまで // 引く回数の期待値 double exp_num = 1.0 * N / (N - z); // (条件付き期待値) * (条件付き確率) の足しあわせ if (x != N) { double d = solve(x+1, y, z); dp[x][y][z] += (d + exp_num) * (N - x) / (N - z); } if (y != x) { double d = solve(x, y+1, z); dp[x][y][z] += (d + exp_num) * (x - y) / (N - z); } if (x != N) { double d = solve(x, y, z+1); dp[x][y][z] += (d + exp_num) * (y - z) / (N - z); } return dp[x][y][z]; } int main() { std::cin >> N; for (int i = 0; i < N; i++) { for (int j = 0; j < N; j++) { for (int k = 0; k < N; k++) { dp[i][j][k] = -1; } } } dp[N][N][N] = 0; for (int i = 0; i < N; i++) { int A; std::cin >> A; cnt[std::min(A, 3)]++; } for (int i = 2; i > 0; i--) { cnt[i] += cnt[i + 1]; } double doub = solve(cnt[1], cnt[2], cnt[3]); printf("%.12f\n", doub); return 0; }