結果

問題 No.813 ユキちゃんの冒険
ユーザー merom686merom686
提出日時 2019-04-14 10:31:26
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 967 ms / 2,000 ms
コード長 639 bytes
コンパイル時間 637 ms
コンパイル使用メモリ 73,960 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-21 08:30:20
合計ジャッジ時間 7,328 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 7 ms
6,944 KB
testcase_02 AC 415 ms
6,940 KB
testcase_03 AC 89 ms
6,944 KB
testcase_04 AC 301 ms
6,940 KB
testcase_05 AC 856 ms
6,940 KB
testcase_06 AC 132 ms
6,944 KB
testcase_07 AC 32 ms
6,944 KB
testcase_08 AC 542 ms
6,944 KB
testcase_09 AC 20 ms
6,944 KB
testcase_10 AC 108 ms
6,944 KB
testcase_11 AC 77 ms
6,940 KB
testcase_12 AC 212 ms
6,940 KB
testcase_13 AC 407 ms
6,948 KB
testcase_14 AC 5 ms
6,944 KB
testcase_15 AC 967 ms
6,940 KB
testcase_16 AC 664 ms
6,944 KB
testcase_17 AC 46 ms
6,940 KB
testcase_18 AC 15 ms
6,940 KB
testcase_19 AC 297 ms
6,944 KB
testcase_20 AC 91 ms
6,940 KB
testcase_21 AC 41 ms
6,944 KB
testcase_22 AC 42 ms
6,944 KB
testcase_23 AC 152 ms
6,944 KB
testcase_24 AC 3 ms
6,944 KB
testcase_25 AC 302 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

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[1002][2] = {};

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

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

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

    return 0;
}
0