結果

問題 No.425 ジャンケンの必勝法
ユーザー yosupot
提出日時 2016-09-22 23:54:13
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 1,193 bytes
コンパイル時間 711 ms
コンパイル使用メモリ 100,032 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-17 19:42:57
合計ジャッジ時間 1,409 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 5
other AC * 18
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cstdio>
#include <cassert>
#include <cstring>
#include <vector>
#include <valarray>
#include <array>
#include <queue>
#include <set>
#include <unordered_set>
#include <map>
#include <unordered_map>
#include <algorithm>
#include <cmath>
#include <complex>
#include <random>

using namespace std;
using uint = unsigned int;
using ll = long long;
using ull = unsigned long long;
template<class T = ll> constexpr T TEN(int n) {return (n==0)?1:10*TEN<T>(n-1);}
int bsr(int x) { return 31 - __builtin_clz(x); }

using R = double;

int p0, q;


R calc(int p, int dps = 0) {
    if (dps >= 100) {
        return 0;
    }
    p = max(0, p); p = min(100, p);
    R ans = 0;
    static R dp[101][101];
    static bool used[101][101];
    if (used[p][dps]) return dp[p][dps];
    used[p][dps] = true;
    R pr = R(p)/100;
    // use
    {
        ans += pr * 1.0/2;
        ans += pr * 1.0/2 * calc(p-q, dps+1);
    }
    // not use
    {
        ans += (1-pr) * 1.0/3;
        ans += (1-pr) * 1.0/3 * calc(p+q, dps+1);
    }
    return dp[p][dps] = ans;
}

int main() {
    cin >> p0 >> q;
    R ans = 1.0 / 3 + 1.0/3 * calc(p0);
    printf("%.20lf\n", ans);
    return 0;
}
0