結果

問題 No.813 ユキちゃんの冒険
ユーザー merom686merom686
提出日時 2019-04-12 23:11:29
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 755 bytes
コンパイル時間 588 ms
コンパイル使用メモリ 71,912 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2025-01-02 03:38:33
合計ジャッジ時間 1,407 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 25 WA * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <string>
#include <algorithm>
#include <cstdio>
#include <cstring>
#include <cmath>
using namespace std;
using ll = long long;

int main() {
    int n;
    cin >> n;

    double p, q;
    cin >> p >> q;

    double x[2][1002][2] = {};

    x[0][0][0] = x[1][0][0] = 1;
    x[0][n + 1][1] = x[1][n + 1][0] = 0;
    for (int i = 1; i <= n; i++) {
        x[0][i][0] = x[0][i][1] = 0.5;
    }

    for (int h = 0; h < 1000; h++) {
        for (int i = 1; i <= n; i++) {
            x[1][i][0] = q * x[0][i - 1][0] + p * x[0][i + 1][1];
            x[1][i][1] = p * x[0][i - 1][0] + q * x[0][i + 1][1];
        }
        memcpy(x[0], x[1], sizeof(x[0]));
    }

    printf("%.8f\n", x[0][1][1]);

    return 0;
}
0