Fleecing the Raffle
Nordic Collegiate Programming Contest 2016.
题意
已经有n张名片,加入x张你的名片,一次取出p张牌,求取出的p张牌中有且只有一张你的名片的最大概率是多少
分析
参考代码
int main(void)
{
std::ios::sync_with_stdio(false);
LL n,p ;
while(cin>>n>>p)
{
double x = n/(p-1);
double ans = 1;
ans *= p*x;
ans *= exp(lgamma(n+1)-lgamma(n-p+2)-lgamma(n+x+1)+lgamma(n+x-p+1));
printf("%0.8f\n",ans);
}
return 0;
}
int main(void)
{
LL n,p ;
while(cin>>n>>p)
{
double x = n/(p-1);
double ans = 1;
ans *= (double)p*x/(n+1);
for(int i = 2;i <= p+1;++i)
ans *= (double)(n-p+i)/(n + x -p+i-1);
printf("%0.8f\n",ans);
}
return 0;
}