結果
問題 | No.813 ユキちゃんの冒険 |
ユーザー | veqcc |
提出日時 | 2019-04-12 23:19:13 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 904 bytes |
コンパイル時間 | 1,088 ms |
コンパイル使用メモリ | 101,960 KB |
実行使用メモリ | 19,384 KB |
最終ジャッジ日時 | 2024-06-10 13:37:58 |
合計ジャッジ時間 | 6,809 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | WA | - |
testcase_02 | AC | 31 ms
10,064 KB |
testcase_03 | WA | - |
testcase_04 | AC | 775 ms
19,384 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 39 ms
10,412 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 83 ms
10,940 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 553 ms
17,752 KB |
testcase_17 | WA | - |
testcase_18 | AC | 2 ms
6,940 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 2 ms
6,940 KB |
testcase_25 | WA | - |
ソースコード
#include <algorithm> #include <iostream> #include <iomanip> #include <cstring> #include <string> #include <vector> #include <random> #include <bitset> #include <queue> #include <cmath> #include <stack> #include <set> #include <map> typedef long long ll; typedef long double ld; using namespace std; ld dp[1005][1005]; // i->j->iとなる確率 int main() { int n; ld p, q; cin >> n >> p >> q; if (q == 0.0) { cout << p << "\n"; return 0; } for (int i = 0; i < n; i++) dp[i][i] = p / (q * q); for (int d = 1; d < n; d++) { for (int i = 0; i < n; i++) { ld tmp = 0.0; for (int k = i + 1; k < i + d; k++) tmp += q * q * dp[i+1][k]; dp[i][i+d] = q * q * dp[i+1][i+d] / (1.0 - tmp); } } ld ans = 0.0; for (int i = 0; i < n; i++) ans += q * q * dp[0][i]; cout << ans << "\n"; return 0; }