結果

問題 No.813 ユキちゃんの冒険
ユーザー SumitacchanSumitacchan
提出日時 2019-04-12 22:45:54
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 2,432 bytes
コンパイル時間 1,877 ms
コンパイル使用メモリ 170,024 KB
実行使用メモリ 160,340 KB
最終ジャッジ日時 2023-08-30 13:30:59
合計ジャッジ時間 6,140 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
4,376 KB
testcase_01 AC 7 ms
7,416 KB
testcase_02 AC 59 ms
55,756 KB
testcase_03 AC 52 ms
49,928 KB
testcase_04 AC 167 ms
160,340 KB
testcase_05 AC 177 ms
150,488 KB
testcase_06 AC 79 ms
71,736 KB
testcase_07 AC 62 ms
20,072 KB
testcase_08 AC 374 ms
113,340 KB
testcase_09 AC 14 ms
14,172 KB
testcase_10 AC 64 ms
59,848 KB
testcase_11 AC 46 ms
43,624 KB
testcase_12 AC 155 ms
113,748 KB
testcase_13 AC 81 ms
77,428 KB
testcase_14 AC 6 ms
6,364 KB
testcase_15 AC 598 ms
137,908 KB
testcase_16 AC 147 ms
143,140 KB
testcase_17 AC 59 ms
27,020 KB
testcase_18 AC 12 ms
11,856 KB
testcase_19 AC 229 ms
157,936 KB
testcase_20 AC 67 ms
50,612 KB
testcase_21 AC 36 ms
24,832 KB
testcase_22 AC 27 ms
24,996 KB
testcase_23 AC 493 ms
82,324 KB
testcase_24 AC 3 ms
4,476 KB
testcase_25 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
struct fast_ios { fast_ios(){ cin.tie(0); ios::sync_with_stdio(false); cout << fixed << setprecision(20); }; } fast_ios_;
#define FOR(i, begin, end) for(int i=(begin);i<(end);i++)
#define REP(i, n) FOR(i,0,n)
#define IFOR(i, begin, end) for(int i=(end)-1;i>=(begin);i--)
#define IREP(i, n) IFOR(i,0,n)
#define Sort(v) sort(v.begin(), v.end())
#define Reverse(v) reverse(v.begin(), v.end())
#define all(v) v.begin(),v.end()
#define SZ(v) ((int)v.size())
#define Lower_bound(v, x) distance(v.begin(), lower_bound(v.begin(), v.end(), x))
#define Upper_bound(v, x) distance(v.begin(), upper_bound(v.begin(), v.end(), x))
#define Max(a, b) a = max(a, b)
#define Min(a, b) a = min(a, b)
#define bit(n) (1LL<<(n))
#define bit_exist(x, n) ((x >> n) & 1)
#define Ans(f, y, n) if(f) cout << y << endl; else cout << n << endl;
#define debug(x) cout << #x << "=" << x << endl;
#define vdebug(v) cout << #v << "=" << endl; REP(i, v.size()){ cout << v[i] << ","; } cout << endl;
#define mdebug(m) cout << #m << "=" << endl; REP(i, m.size()){ REP(j, m[i].size()){ cout << m[i][j] << ","; } cout << endl;}
#define pb push_back
#define f first
#define s second
#define int long long
#define INF 1000000000000000000

using vec = vector<double>;
using mat = vector<vec>;
using Pii = pair<int, int>;
using PiP = pair<int, Pii>;
using PPi = pair<Pii, int>;
using bools = vector<bool>;
using pairs = vector<Pii>;

template<typename T> void readv(vector<T> &a){ REP(i, a.size()) cin >> a[i]; }
void readv_m1(vector<int> &a){ REP(i, a.size()){cin >> a[i]; a[i]--;} }

//int dx[4] = {1,0,-1,0};
//int dy[4] = {0,1,0,-1};

int mod = 1000000007;
//int mod = 998244353;
#define Add(x, y) x = (x + (y)) % mod
#define Mult(x, y) x = (x * (y)) % mod


signed main(){

    int N; cin >> N;
    double p, q; cin >> p >> q;

    int M = 10000;
    mat dp(M + 1, vec(2 * (N + 2), 0.0));
    dp[0][1] = 1.0;
    REP(i, M){
        dp[i + 1][0] = dp[i][0];
        dp[i + 1][N + 2] = dp[i][N + 2];
        dp[i + 1][N + 1] = dp[i][N + 1];
        dp[i + 1][N + 1 + N + 2] = dp[i][N + 1 + N + 2];
        FOR(j, 1, N + 1){
            dp[i + 1][j - 1 + N + 2] += p * dp[i][j];
            dp[i + 1][j + 1] += q * dp[i][j];
            dp[i + 1][j - 1 + N + 2] += q * dp[i][j + N + 2];
            dp[i + 1][j + 1] += p * dp[i][j + N + 2];
        }
    }
    //mdebug(dp);
    cout << dp[M][N + 2] << endl;

    return 0;
}
0