結果

問題 No.425 ジャンケンの必勝法
ユーザー airisairis
提出日時 2016-09-23 00:44:31
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 24 ms / 2,000 ms
コード長 996 bytes
コンパイル時間 1,327 ms
コンパイル使用メモリ 157,812 KB
実行使用メモリ 13,184 KB
最終ジャッジ日時 2024-04-28 22:44:17
合計ジャッジ時間 2,320 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 6 ms
6,528 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 5 ms
5,504 KB
testcase_07 AC 6 ms
6,400 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 23 ms
13,184 KB
testcase_12 AC 23 ms
13,056 KB
testcase_13 AC 24 ms
12,928 KB
testcase_14 AC 22 ms
13,104 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 22 ms
12,928 KB
testcase_18 AC 3 ms
5,376 KB
testcase_19 AC 3 ms
5,376 KB
testcase_20 AC 22 ms
13,032 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(x, to) for (int x = 0; x < (to); x++)
#define REP(x, a, to) for (int x = (a); x < (to); x++)
#define EPS (1e-14)
#define _PA(x,N) rep(i,N){cout<<x[i]<<" ";}cout<<endl;
#define _PA2(x,H,W) rep(i,(H)){rep(j,(W)){cout<<x[i][j]<<" ";}cout<<endl;}

using namespace std;

typedef long long ll;
typedef pair<int, int> PII;
typedef pair<ll, ll> PLL;
typedef complex<double> Complex;
typedef vector< vector<int> > Mat;

int p, q;
char done[105][10005];
double dp[105][10005];

double dfs(int r, int depth) {
	if (depth < 0) {
		return 0;
	}
	if (done[r][depth]) {
		return dp[r][depth];
	}

	double a, b;
	double pp = r / 100.0;

	// use
	a = pp / 2.0 + pp / 2 * dfs(max(0, r - q), depth - 1);
	// not use
	b = (1.0 - pp) / 3.0 + (1.0 - pp) / 3.0 * dfs(min(100, r + q), depth - 1);

	done[r][depth] = 1;
	return dp[r][depth] = a + b;
}

void solve() {
	printf("%.12f\n", 1.0 / 3.0 + 1.0 / 3.0 * dfs(p, 10000));
}

int main() {
	cin >> p >> q;
	solve();
	return 0;
}


0