HDU_5810:Balls and Boxes(期望)
Posted wy_2016
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HDU_5810:Balls and Boxes(期望)相关的知识,希望对你有一定的参考价值。
这题似乎就是纯概率论。。
E(V)=D(X_i)=npq (p=1/m,p+q=1)
#include<bits/stdc++.h> using namespace std; typedef long long LL; LL n,m; LL gcd(LL a,LL b) { return b?gcd(b,a%b):a; } int main() { while(cin>>n>>m && n+m) { LL a=n*m-n,b=m*m; LL g=gcd(a,b); cout<<a/g<<‘/‘<<b/g<<endl; } }
以上是关于HDU_5810:Balls and Boxes(期望)的主要内容,如果未能解决你的问题,请参考以下文章
UVa 12525 Boxes and Stones (dp 博弈)
CodeForces - 985E Pencils and Boxes