結果
問題 | No.1688 Veterinarian |
ユーザー | merom686 |
提出日時 | 2021-09-24 22:06:27 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 301 ms / 3,000 ms |
コード長 | 2,285 bytes |
コンパイル時間 | 2,059 ms |
コンパイル使用メモリ | 206,144 KB |
実行使用メモリ | 210,944 KB |
最終ジャッジ日時 | 2024-07-05 10:38:38 |
合計ジャッジ時間 | 3,019 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 1 ms
6,940 KB |
testcase_06 | AC | 9 ms
13,892 KB |
testcase_07 | AC | 8 ms
9,672 KB |
testcase_08 | AC | 301 ms
210,944 KB |
testcase_09 | AC | 288 ms
204,744 KB |
testcase_10 | AC | 37 ms
33,868 KB |
testcase_11 | AC | 33 ms
29,252 KB |
testcase_12 | AC | 4 ms
7,884 KB |
testcase_13 | AC | 9 ms
13,388 KB |
testcase_14 | AC | 6 ms
9,412 KB |
testcase_15 | AC | 22 ms
21,704 KB |
testcase_16 | AC | 3 ms
6,944 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; double e[51][51][51][51][4]; int main() { int a, b, c, n; cin >> a >> b >> c >> n; e[n][a][b][c][3] = 1; for (int l = n; l > 0; l--) { for (int i = a; i > 0; i--) { for (int j = b; j > 0; j--) { for (int k = c; k > 0; k--) { double s = 1; int m = i + j + k; for (int h = 0; h < 3; h++) { int x = h == 0 ? i : h == 1 ? j : k; double t = (double)x * (x - 1) / (m * (m - 1)); if (h == 0) { for (int f = 0; f < 3; f++) { e[l - 1][i - 1][j][k][f] += (e[l][i][j][k][f] + e[l][i][j][k][3] * (f == h)) * t; } e[l - 1][i - 1][j][k][3] += e[l][i][j][k][3] * t; } else if (h == 1) { for (int f = 0; f < 3; f++) { e[l - 1][i][j - 1][k][f] += (e[l][i][j][k][f] + e[l][i][j][k][3] * (f == h)) * t; } e[l - 1][i][j - 1][k][3] += e[l][i][j][k][3] * t; } else if (h == 2) { for (int f = 0; f < 3; f++) { e[l - 1][i][j][k - 1][f] += (e[l][i][j][k][f] + e[l][i][j][k][3] * (f == h)) * t; } e[l - 1][i][j][k - 1][3] += e[l][i][j][k][3] * t; } s -= t; } for (int h = 0; h < 3; h++) { e[l - 1][i][j][k][h] += e[l][i][j][k][h] * s; } e[l - 1][i][j][k][3] += e[l][i][j][k][3] * s; } } } } double r[3] = {}; for (int i = a; i > 0; i--) { for (int j = b; j > 0; j--) { for (int k = c; k > 0; k--) { for (int h = 0; h < 3; h++) { r[h] += e[0][i][j][k][h]; } } } } cout << fixed << setprecision(9) << r[0] << ' ' << r[1] << ' ' << r[2] << endl; return 0; }