結果

問題 No.813 ユキちゃんの冒険
ユーザー mtsdmtsd
提出日時 2019-04-12 22:21:28
言語 C++11
(gcc 11.4.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 507 bytes
コンパイル時間 1,419 ms
コンパイル使用メモリ 162,956 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-10 13:28:17
合計ジャッジ時間 3,553 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 4 ms
6,944 KB
testcase_02 AC 45 ms
6,940 KB
testcase_03 AC 36 ms
6,944 KB
testcase_04 AC 125 ms
6,944 KB
testcase_05 AC 117 ms
6,944 KB
testcase_06 AC 50 ms
6,940 KB
testcase_07 AC 14 ms
6,944 KB
testcase_08 AC 88 ms
6,944 KB
testcase_09 AC 10 ms
6,940 KB
testcase_10 AC 42 ms
6,940 KB
testcase_11 AC 30 ms
6,944 KB
testcase_12 AC 86 ms
6,940 KB
testcase_13 AC 71 ms
6,940 KB
testcase_14 AC 4 ms
6,940 KB
testcase_15 AC 107 ms
6,944 KB
testcase_16 AC 136 ms
6,944 KB
testcase_17 AC 21 ms
6,940 KB
testcase_18 AC 10 ms
6,940 KB
testcase_19 AC 118 ms
6,944 KB
testcase_20 AC 36 ms
6,940 KB
testcase_21 AC 17 ms
6,940 KB
testcase_22 AC 17 ms
6,944 KB
testcase_23 AC 59 ms
6,940 KB
testcase_24 AC 2 ms
6,940 KB
testcase_25 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i,n) for(int i=0;i<(int)n;i++)

int main(){
	int n;
	long double p,q;
	cin >> n >> p >> q;
	vector<long double> dp(2*n+2);
	dp[1] = 1.0;
	rep(zzz,10000){
		vector<long double> dp2(2*n+2);
		rep(i,2*n+1){
			if(i==0){dp2[i] += dp[i];continue;}
			if(i%2==1){
				dp2[i-1] += p*dp[i];
				dp2[i+2] += q*dp[i];
			}else{
				dp2[i+1] += p*dp[i];
				dp2[i-2] += q*dp[i];
			}
		}
		dp = dp2;
	}
	cout.precision(10);
	cout << dp[0] << endl;
	return 0;
}
0