結果
問題 | No.425 ジャンケンの必勝法 |
ユーザー | moti |
提出日時 | 2016-09-23 00:45:07 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 1,085 ms / 2,000 ms |
コード長 | 975 bytes |
コンパイル時間 | 1,652 ms |
コンパイル使用メモリ | 174,260 KB |
実行使用メモリ | 67,456 KB |
最終ジャッジ日時 | 2024-04-28 22:44:39 |
合計ジャッジ時間 | 9,510 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 7 ms
5,376 KB |
testcase_01 | AC | 7 ms
5,376 KB |
testcase_02 | AC | 13 ms
5,760 KB |
testcase_03 | AC | 23 ms
7,168 KB |
testcase_04 | AC | 128 ms
16,768 KB |
testcase_05 | AC | 30 ms
7,808 KB |
testcase_06 | AC | 74 ms
12,160 KB |
testcase_07 | AC | 107 ms
14,592 KB |
testcase_08 | AC | 26 ms
7,040 KB |
testcase_09 | AC | 24 ms
7,168 KB |
testcase_10 | AC | 12 ms
5,888 KB |
testcase_11 | AC | 1,058 ms
67,456 KB |
testcase_12 | AC | 987 ms
67,456 KB |
testcase_13 | AC | 1,054 ms
67,328 KB |
testcase_14 | AC | 1,085 ms
67,456 KB |
testcase_15 | AC | 7 ms
5,376 KB |
testcase_16 | AC | 7 ms
5,376 KB |
testcase_17 | AC | 1,047 ms
67,328 KB |
testcase_18 | AC | 24 ms
7,168 KB |
testcase_19 | AC | 24 ms
7,168 KB |
testcase_20 | AC | 1,047 ms
67,328 KB |
testcase_21 | AC | 7 ms
5,376 KB |
testcase_22 | AC | 7 ms
5,376 KB |
ソースコード
#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; }