結果
問題 | No.813 ユキちゃんの冒険 |
ユーザー | milanis48663220 |
提出日時 | 2021-06-15 01:35:17 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 1,294 ms / 2,000 ms |
コード長 | 1,442 bytes |
コンパイル時間 | 1,349 ms |
コンパイル使用メモリ | 121,316 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-09-30 07:38:28 |
合計ジャッジ時間 | 3,019 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | AC | 2 ms
6,820 KB |
testcase_04 | AC | 6 ms
6,820 KB |
testcase_05 | AC | 2 ms
6,816 KB |
testcase_06 | AC | 2 ms
6,820 KB |
testcase_07 | AC | 2 ms
6,816 KB |
testcase_08 | AC | 2 ms
6,816 KB |
testcase_09 | AC | 1 ms
6,816 KB |
testcase_10 | AC | 2 ms
6,816 KB |
testcase_11 | AC | 2 ms
6,820 KB |
testcase_12 | AC | 2 ms
6,816 KB |
testcase_13 | AC | 2 ms
6,820 KB |
testcase_14 | AC | 2 ms
6,816 KB |
testcase_15 | AC | 1 ms
6,816 KB |
testcase_16 | AC | 2 ms
6,820 KB |
testcase_17 | AC | 2 ms
6,816 KB |
testcase_18 | AC | 1 ms
6,820 KB |
testcase_19 | AC | 1 ms
6,816 KB |
testcase_20 | AC | 2 ms
6,820 KB |
testcase_21 | AC | 1 ms
6,816 KB |
testcase_22 | AC | 2 ms
6,816 KB |
testcase_23 | AC | 2 ms
6,816 KB |
testcase_24 | AC | 1 ms
6,816 KB |
testcase_25 | AC | 1,294 ms
6,820 KB |
ソースコード
#include <iostream> #include <algorithm> #include <iomanip> #include <vector> #include <queue> #include <set> #include <map> #include <tuple> #include <cmath> #include <numeric> #include <functional> #include <cassert> #define debug_value(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << #x << "=" << x << endl; #define debug(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << x << endl; template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } using namespace std; typedef long long ll; int main(){ ios::sync_with_stdio(false); cin.tie(0); cout << setprecision(10) << fixed; int n; double p, q; cin >> n >> p >> q; vector<double> p0(n+1), p1(n+1); vector<double> p0_pre(n+1), p1_pre(n+1); p0[1] = 1; auto ok = [&](){ auto p = accumulate(p0.begin(), p0.end(), 0.0)+accumulate(p1.begin(), p1.end(), 0.0); // cout << p << endl; return p < 0.0009; }; double ans = 0.0; while(!ok()){ swap(p0, p0_pre); swap(p1, p1_pre); p0[0] = 0; p0[n] = 0; p1[0] = 0; p1[n] = 0; ans += p0_pre[1]*p+p1_pre[1]*q; for(int i = 1; i <= n-1; i++){ p0[i] = p0_pre[i-1]*q+p1_pre[i-1]*p; p1[i] = p0_pre[i+1]*p+p1_pre[i+1]*q; } } cout << ans << endl; }