zoukankan      html  css  js  c++  java
  • 【CodeForces 312B】BUPT 2015 newbie practice #3A Archer

    SmallR is an archer. SmallR is taking a match of archer with Zanoes. They try to shoot in the target in turns, and SmallR shoots first. The probability of shooting the target each time is  for SmallR while  for Zanoes. The one who shoots in the target first should be the winner.

    Output the probability that SmallR will win the match.

    Input

    A single line contains four integers .

    Output

    Print a single real number, the probability that SmallR will win the match.

    The answer will be considered correct if the absolute or relative error doesn't exceed 10 - 6.

    Sample test(s)
    input
    1 2 1 2
    output
    0.666666666667

     题意:给出两个弓箭手的射中目标的概率(分数),两人轮流射击,求第一位弓箭手赢的概率(小数)

    分析:第一位弓箭手赢,那么第一次就射中或者,第一次不中而第二个弓箭手也不中,第二次中,……

    p=a/b为第一位射中的概率,q=c/d为第二位射中的概率。

    题目要求误差小于1e-6,刚开始我的代码是下面这样

    #include<stdio.h>
    int main(){
        double a,b,c,d,ans,u;
        scanf("%lf%lf%lf%lf",&a,&b,&c,&d);
        ans=1;u=1;
        while(u*a/b>=1e-6){//改成-7、-8也会WA,-9可过
            u*=(1-a/b)*(1-c/d);
            ans+=u;
        }
        printf("%lf
    ",ans*a/b);
        return 0;
    }

     因为当u*a/b<1e-6时ans继续加下去,可能比当前ans大不止1e-6,因为后面加了好几次;正确的方法是用等比数列求和公式

    s=(1-qn)/(1-q),当n趋于无穷时,因为0<q<1,所以s=1/(1-q)

    q=(1-a/b)*(1-c/d),ans=s*a/b.

    #include<stdio.h>
    int main(){
        double a,b,c,d,ans,u;
        scanf("%lf%lf%lf%lf",&a,&b,&c,&d);
        ans=1/(1-(1-a/b)*(1-c/d));
        printf("%.12lf
    ",ans*a/b);
        return 0;
    }

    进行化简一下得到

    #include<stdio.h>
    int main(){
        double a,b,c,d,ans,u;
        scanf("%lf%lf%lf%lf",&a,&b,&c,&d);
        printf("%.12lf
    ",a*d/(a*d+b*c-a*c));
        return 0;
    }
  • 相关阅读:
    在Excel中查找/替换时使用换行符
    用fieldset标签轻松实现Tab选项卡效果
    用JSFL将Flash中的元件导出为PNG
    PHP学习笔记之PDO
    网页中的数学公式
    解决fl.findObjectInDocByType/fl.findObjectInDocByName的毛病
    HTML+CSS 网页中鼠标滚轮失效的解决办法
    jQuery 离开页面时提示
    ASP 计算出指定年份生肖
    au3创建Access数据库表例子
  • 原文地址:https://www.cnblogs.com/flipped/p/5183033.html
Copyright © 2011-2022 走看看