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 148 D Bag of mice(概率dp)
- Codeforces 148D Bag of mice (概率dp)
- Codeforces 148D Bag of mice:概率dp 記憶化搜尋
- CodeForces - 628D (數位dp)
- Codeforces 432D Prefixes and Suffixes:KMP + dpKMP
- 【dp】codeforces 837D Round Subset
- CodeForces 401D 數位DP
- 【數位dp】Beautiful numbers CodeForces - 55D
- Codeforces Round #358 (Div. 2) D dp
- Codeforces 351B Jeff and Furik:概率 + 逆序對【結論題 or dp】
- Codeforces Round #321 (Div. 2) D 狀壓dp
- Codeforces 478D Red-Green Towers:dp
- 概率DP入門題
- Codeforces 626D Jerry's Protest(暴力列舉+概率)
- Codeforces 486D Valid Sets:Tree dp【n遍O(n)的dp】
- Codeforces Round #336 (Div. 2) D 區間dp
- 概率DP總結 by kuangbin
- HDU 3853 LOOPS(概率dp)OOP
- Codeforces 219D Choosing Capital for Treeland:Tree dpAPI
- Codeforces 11D A Simple Task 題解 [ 藍 ] [ 狀壓 dp ]
- Codeforces 235B Let's Play Osu! (概率dp求期望+公式變形)公式
- SGU 495 Kids and Prizes:期望dp / 概率dp / 推公式公式
- Codeforces 463D Gargari and Permutations:隱式圖dp【多串LCS】3D
- Educational Codeforces Round 167 (Rated for Div. 2) D(dp,貪心)
- POJ 3744 概率dp+矩陣矩陣
- Codeforces 358D Dima and Hares:dp【只考慮相鄰元素】
- codeforces455A Boredom (裸DP)
- Codeforces 148E Porcelain (預處理+多重揹包)AI
- Codeforces 372B Counting Rectangles is Fun:dp套dp
- Codeforces 180C Letter:dp
- 【演算法學習筆記】概率與期望DP演算法筆記
- Codeforces 158E Phone Talks:dp
- Codeforces 294B Shaass and Bookshelf:dp
- 【dp】CodeForces - 623B Array GCDGC
- 【dp】codeforces 830-A Office Keys
- HDU 4326Game(比較難理解的概率dp)GAM
- lightoj 1030 Discovering Gold (基礎概率dp)Go
- Codeforces Round #318 [RussianCodeCup Thanks-Round] (Div. 2) D 雙向dp