codeforces 148 D 概率dp
http://codeforces.com/problemset/problem/148/D
The dragon and the princess are arguing about what to do on the New Year's Eve. The dragon suggests flying to the mountains to watch fairies dancing in the moonlight, while the princess thinks they should just go to bed early. They are desperate to come to an amicable agreement, so they decide to leave this up to chance.
They take turns drawing a mouse from a bag which initially contains w white and b black mice. The person who is the first to draw a white mouse wins. After each mouse drawn by the dragon the rest of mice in the bag panic, and one of them jumps out of the bag itself (the princess draws her mice carefully and doesn't scare other mice). Princess draws first. What is the probability of the princess winning?
If there are no more mice in the bag and nobody has drawn a white mouse, the dragon wins. Mice which jump out of the bag themselves are not considered to be drawn (do not define the winner). Once a mouse has left the bag, it never returns to it. Every mouse is drawn from the bag with the same probability as every other one, and every mouse jumps out of the bag with the same probability as every other one.
The only line of input data contains two integers w and b (0 ≤ w, b ≤ 1000).
Output the probability of the princess winning. The answer is considered to be correct if its absolute or relative error does not exceed10 - 9.
1 3
0.500000000
5 5
0.658730159
Let's go through the first sample. The probability of the princess drawing a white mouse on her first turn and winning right away is 1/4. The probability of the dragon drawing a black mouse and not winning on his first turn is 3/4 * 2/3 = 1/2. After this there are two mice left in the bag — one black and one white; one of them jumps out, and the other is drawn by the princess on her second turn. If the princess' mouse is white, she wins (probability is 1/2 * 1/2 = 1/4), otherwise nobody gets the white mouse, so according to the rule the dragon wins.
/**
概率dp
dp[i][j]為剩下i只白鼠,j只黑鼠,該priness抓時的,priness獲勝的概率
總共有四種情況:
(1)p抓到白,則勝利
(2)p抓到黑,d抓到黑,跑走黑
(3)p抓到黑,d抓到黑,跑走白
(4)p抓到黑,d抓到白(輸,作廢)
*/
#include <stdio.h>
#include <string.h>
#include <iostream>
#include <algorithm>
using namespace std;
double dp[1002][1002];
int n,m;
int main()
{
while(~scanf("%d%d",&n,&m))
{
memset(dp,0,sizeof(dp));
for(int i=1;i<=n;i++)
dp[i][0]=1;
for(int j=1;j<=m;j++)
dp[0][j]=0;
for(int i=1;i<=n;i++)
for(int j=1;j<=m;j++)
{
dp[i][j]=i*1.0/(i+j);
if(j>=3)
dp[i][j]+=j*1.0/(i+j)*(j-1)*1.0/(i+j-1)*(j-2)/(i+j-2)*dp[i][j-3];
if(j>=2)
dp[i][j]+=j*1.0/(i+j)*(j-1)/(i+j-1)*i/(i+j-2)*dp[i-1][j-2];
}
printf("%.9lf\n",dp[n][m]);
}
return 0;
}
相關文章
- CodeForces - 628D (數位dp)
- Codeforces 11D A Simple Task 題解 [ 藍 ] [ 狀壓 dp ]
- Educational Codeforces Round 167 (Rated for Div. 2) D(dp,貪心)
- POJ 3071 Football(概率DP)
- luogu P6835 概率DP 期望
- codeforces_1131_D
- HDU 5816 Hearthstone(狀態壓縮DP+概率)
- Codeforces Global Round 26 (A - D)
- 【演算法學習筆記】概率與期望DP演算法筆記
- 洛谷 P4284 [SHOI2014]概率充電器 概率與期望+換根DP
- Codeforces_943_D_Permutation GameGAM
- Codeforces1493D GCD of an Array3DGC
- codeforces1450D. Rating Compression
- 【訓練題19:概率DP】One Person Game | ZOJ3329GAM
- (DP) CF1861D Sorting By Multiplication
- Codeforces Round 941 (Div. 2) D
- 【Codeforces528D】Fuzzy Search FFTFFT
- Codeforces Round 960 (Div. 2)(A - D)
- 動態規劃之經典數學期望和概率DP動態規劃
- cf1097D. Makoto and a Blackboard(期望dp)
- Codeforces Round 720 (Div. 2) A-D
- CodeForces - 1430D String Deletion (思維)
- CodeForces_1422D Returning Home(最短路)
- Codeforces Round 949題解(A、B、C、D)
- Codeforces Round 958 (Div 2)(A—D題解)
- Educational Codeforces Round 166(A-D題解)
- Codeforces Round #688(Div 2) D. Checkpoints
- CF1442D Sum 分治 揹包dp
- Codeforces Round 934 2D/1B
- Educational Codeforces Round 166 個人題解(A~D)
- Codeforces Round #673 (Div. 2)(A-D)題解
- Codeforces Round 957 (Div.2)(A-D題解)
- Educational Codeforces Round 170 (Rated for Div. 2) A-D
- Educational Codeforces Round 142 (Rated for Div. 2) A-D
- Codeforces-1131D:Gourmet choice(拓撲+並查集)Go並查集
- Codeforces #123D: 字尾陣列+單調棧3D陣列
- Codeforces Round 987 (Div. 2)題解記錄(A~D)
- Codeforces Round 980 div2 個人題解(A~D)
- Codeforces Round 986 (Div. 2)題解記錄(A~D)