結果

問題 No.813 ユキちゃんの冒険
ユーザー finefine
提出日時 2019-04-13 00:21:05
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 761 bytes
コンパイル時間 1,483 ms
コンパイル使用メモリ 164,692 KB
実行使用メモリ 13,768 KB
最終ジャッジ日時 2025-01-02 04:08:36
合計ジャッジ時間 14,875 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
13,768 KB
testcase_01 AC 317 ms
10,020 KB
testcase_02 AC 33 ms
10,144 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 AC 53 ms
6,820 KB
testcase_06 AC 85 ms
6,820 KB
testcase_07 AC 76 ms
6,820 KB
testcase_08 AC 46 ms
6,816 KB
testcase_09 AC 140 ms
6,820 KB
testcase_10 AC 80 ms
6,820 KB
testcase_11 AC 866 ms
6,816 KB
testcase_12 AC 144 ms
6,820 KB
testcase_13 AC 46 ms
6,816 KB
testcase_14 AC 293 ms
6,820 KB
testcase_15 AC 91 ms
6,816 KB
testcase_16 AC 41 ms
6,816 KB
testcase_17 AC 115 ms
6,820 KB
testcase_18 AC 45 ms
6,816 KB
testcase_19 AC 164 ms
6,820 KB
testcase_20 AC 241 ms
6,816 KB
testcase_21 AC 238 ms
6,816 KB
testcase_22 AC 165 ms
6,820 KB
testcase_23 AC 107 ms
6,820 KB
testcase_24 AC 56 ms
6,820 KB
testcase_25 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

using ll = long long;

int main() {
	cin.tie(0);
	ios::sync_with_stdio(false);
	int n;
	cin >> n;
	long double p, q;
	cin >> p >> q;
	q += p;

	int seed = 0;
	mt19937 mt(seed);
	uniform_real_distribution<long double> rnd(0, 1);
	int cnt = 0;
	const int LOOP_NUM = 2000000;
    const int MAX_TRY = 2000;
	for (int i = 0; i < LOOP_NUM; i++) {
		int cur = 1;
		int d = 1;
		for (int j = 0; j < MAX_TRY; j++) {
			long double val = rnd(mt);
			if (val <= p) {
				d = -d;
				cur += d;
			} else if (val <= q) {
				cur += d;
			} else {
				break;
			}
			if (cur == n + 1) break;
			if (cur == 0) {
				cnt++;
				break;
			}
		}
	}
	cout << fixed << setprecision(15) << (double)cnt / LOOP_NUM << endl;
	return 0;
}
0