結果

問題 No.425 ジャンケンの必勝法
ユーザー motimoti
提出日時 2016-09-23 00:45:07
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,061 ms / 2,000 ms
コード長 975 bytes
コンパイル時間 1,615 ms
コンパイル使用メモリ 174,032 KB
実行使用メモリ 67,456 KB
最終ジャッジ日時 2024-11-17 19:45:56
合計ジャッジ時間 9,029 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
5,248 KB
testcase_01 AC 7 ms
5,248 KB
testcase_02 AC 13 ms
5,888 KB
testcase_03 AC 24 ms
7,040 KB
testcase_04 AC 123 ms
16,768 KB
testcase_05 AC 29 ms
7,680 KB
testcase_06 AC 73 ms
11,904 KB
testcase_07 AC 104 ms
14,592 KB
testcase_08 AC 25 ms
7,168 KB
testcase_09 AC 23 ms
7,168 KB
testcase_10 AC 11 ms
5,888 KB
testcase_11 AC 1,045 ms
67,328 KB
testcase_12 AC 988 ms
67,328 KB
testcase_13 AC 1,055 ms
67,456 KB
testcase_14 AC 988 ms
67,200 KB
testcase_15 AC 7 ms
5,248 KB
testcase_16 AC 7 ms
5,376 KB
testcase_17 AC 1,061 ms
67,456 KB
testcase_18 AC 23 ms
7,168 KB
testcase_19 AC 23 ms
7,040 KB
testcase_20 AC 1,044 ms
67,328 KB
testcase_21 AC 7 ms
5,248 KB
testcase_22 AC 7 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

#define REP(i,a,b) for(int i=a;i<(int)b;i++)
#define rep(i,n) REP(i,0,n)
#define all(c) (c).begin(), (c).end()
#define zero(a) memset(a, 0, sizeof a)
#define minus(a) memset(a, -1, sizeof a)
#define watch(a) { cout << #a << " = " << a << endl; }
template<class T1, class T2> inline bool minimize(T1 &a, T2 b) { return b < a && (a = b, 1); }
template<class T1, class T2> inline bool maximize(T1 &a, T2 b) { return a < b && (a = b, 1); }

typedef long long ll;

int P0, Q;

map<pair<int, int>, double> memo;

double solve(int P, int depth = 0) {
  if(depth > 1e4) return 1.0f;
  if(memo.find({P, depth}) != memo.end()) return memo[{P, depth}];
  auto& ret = memo[{P, depth}];
  return ret =
  P / 200.0 + (100 - P) / 300.0
  + P / 200.0         * solve(max(0,    P-Q), depth + 1)
  + (100 - P) / 300.0 * solve(min(100,  P+Q), depth + 1);
}

int main() {

  cin >> P0 >> Q;
  printf("%.10f\n", (1 + solve(P0)) / 3);

  return 0;
}
0