As is known to all,if you throw a coin up and let it droped on the desk there are usually three results. Yes,just believe what I say ~it can be the right side or the other side or standing on the desk, If you don't believe this,just try In the past there were some famous mathematicians working on this .They repeat the throwing job once again. But jacmy is a lazy boy.He is busy with dating or playing games.He have no time to throw a single coin for 100000 times. Here comes his idea,He just go bank and exchange thousands of dollars into coins and then throw then on the desk only once. The only job left for him is to count the number of coins with three conditions.
He will show you the coins on the desk to you one by one. Please tell him the possiblility of the coin on the right side as a fractional number if the possiblity between the result and 0.5 is no larger than 0.003. BE CAREFUL that even 1/2,50/100,33/66 are equal only 1/2 is accepted ! if the difference between the result and 0.5 is larger than 0.003,Please tell him "Fail".Or if you see one coin standing on the desk,just say "Bingo" any way.
6 UUUDDD
1/2
思路 :如果实验成功,则用最简分数表示概率,所以要把分数约分,gcd应用
代码
#include<stdio.h>
#include<math.h>
int gcd(int a,int b)
{
int r;
while(b)
{
r=a%b;
a=b;
b=r;
}
return a;
}
int main()
{
int n;
scanf("%d",&n);
getchar();
char s;int num=0;
for(int i=0;i<n;i++)
{
s=getchar();
if(s=='S')
{
printf("Bingo");
break;
}
if(s=='U') num++;
}
int c=gcd(n,num);
if(fabs(1.0*num/n-0.5)<=0.003) //
printf("%d/%d",num/c,n/c);
else
printf("Fail");
return 0;
}