結果

問題 No.813 ユキちゃんの冒険
ユーザー chocoruskchocorusk
提出日時 2019-04-13 00:44:32
言語 C++11
(gcc 13.3.0)
結果
TLE  
実行時間 -
コード長 1,019 bytes
コンパイル時間 3,281 ms
コンパイル使用メモリ 102,200 KB
実行使用メモリ 13,772 KB
最終ジャッジ日時 2025-01-02 04:11:38
合計ジャッジ時間 25,046 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
13,764 KB
testcase_01 AC 13 ms
10,148 KB
testcase_02 AC 145 ms
10,148 KB
testcase_03 AC 215 ms
13,768 KB
testcase_04 AC 538 ms
10,148 KB
testcase_05 TLE -
testcase_06 AC 188 ms
10,148 KB
testcase_07 TLE -
testcase_08 TLE -
testcase_09 AC 239 ms
6,816 KB
testcase_10 AC 148 ms
6,816 KB
testcase_11 AC 280 ms
6,816 KB
testcase_12 AC 307 ms
6,816 KB
testcase_13 AC 194 ms
6,816 KB
testcase_14 AC 197 ms
6,820 KB
testcase_15 TLE -
testcase_16 AC 376 ms
6,820 KB
testcase_17 TLE -
testcase_18 AC 24 ms
6,820 KB
testcase_19 AC 469 ms
6,820 KB
testcase_20 AC 141 ms
6,820 KB
testcase_21 AC 68 ms
6,816 KB
testcase_22 TLE -
testcase_23 TLE -
testcase_24 AC 4 ms
6,820 KB
testcase_25 AC 380 ms
10,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
#include <cassert>
#include <fstream>
#define popcount __builtin_popcount
using namespace std;
typedef long long int ll;
typedef pair<int, int> P;

int main()
{
    int n; double p, q; cin>>n>>p>>q;
    double ans=0;
    double dp[2][2][1003]={};
    dp[0][0][1]=1;
    for(int i=1; i<=200000; i++){
        fill(dp[0][i&1], dp[0][i&1]+n+2, 0);
        fill(dp[1][i&1], dp[1][i&1]+n+2, 0);
        for(int j=1; j<=n; j++){
                dp[1][i&1][j-1]+=p*dp[0][(i&1)^1][j];
                dp[0][i&1][j+1]+=q*dp[0][(i&1)^1][j];
                dp[1][i&1][j-1]+=q*dp[1][(i&1)^1][j];
                dp[0][i&1][j+1]+=p*dp[1][(i&1)^1][j];
        }
        ans+=dp[1][i&1][0];
    }
    cout<<ans<<endl;
    return 0;
}
0