• 1011 World Cup Betting


    With the 2010 FIFA World Cup running, football fans the world over were becoming increasingly excited as the best players from the best teams doing battles for the World Cup trophy in South Africa. Similarly, football betting fans were putting their money where their mouths were, by laying all manner of World Cup bets.

    Chinese Football Lottery provided a "Triple Winning" game. The rule of winning was simple: first select any three of the games. Then for each selected game, bet on one of the three possible results -- namely W for win, T for tie, and L for lose. There was an odd assigned to each result. The winner's odd would be the product of the three odds times 65%.

    For example, 3 games' odds are given as the following:

    1. W T L
    2. 1.1 2.5 1.7
    3. 1.2 3.1 1.6
    4. 4.1 1.2 1.1

    To obtain the maximum profit, one must buy W for the 3rd game, T for the 2nd game, and T for the 1st game. If each bet takes 2 yuans, then the maximum profit would be (4.1×3.1×2.5×65%−1)×2=39.31 yuans (accurate up to 2 decimal places).

    Input Specification:

    Each input file contains one test case. Each case contains the betting information of 3 games. Each game occupies a line with three distinct odds corresponding to WT and L.

    Output Specification:

    For each test case, print in one line the best bet of each game, and the maximum profit accurate up to 2 decimal places. The characters and the number must be separated by one space.


    Sample Input:

    1. 1.1 2.5 1.7
    2. 1.2 3.1 1.6
    3. 4.1 1.2 1.1

    Sample Output:

    T T W 39.31

    题目大意

    有三场⽐赛,三行给出每场⽐赛的W、T、L的赔率。我们要选取每⼀场⽐赛中赔率最⼤的三个数a b c,先输出三⾏各⾃选择的是W、T、L中的哪⼀个,然后根据计算公式 (a * b * c * 0.65 – 1) * 2 输出最大收益

    思路

    由题目大意可得


    C/C++ 

    1. #include
    2. using namespace std;
    3. double Max(double W,double T,double L){
    4. if(W >= T && W >= L){
    5. cout << "W" << " ";
    6. return W;
    7. }
    8. if(T>=W && T>=L){
    9. cout << "T" << " ";
    10. return T;
    11. }
    12. cout << "L" << " ";
    13. return L;
    14. }
    15. int main()
    16. {
    17. double a,b,c,result=1;
    18. for(int z=0;z<3;z++){
    19. cin >> a >> b >> c;
    20. result *= Max(a,b,c);
    21. }
    22. result = (result*0.65-1) * 2;
    23. printf("%.2f",result);
    24. return 0;
    25. }


  • 相关阅读:
    Git指令
    Java实现单点登录
    C语言游戏实战(4):人生重开模拟器
    一起来学Kotlin:概念:11. Kotlin this 的使用
    【Spring】之 SpringAOP 理论与实践
    linux之curl命令
    echarts-设置主题+调色盘+尺寸自适应+增量动画、等待动画
    如何使用php提取文章中的关键词?PHP使用Analysis中英文分词提取关键词
    【数据结构初阶】六、线性表中的队列(C语言 -- 链式结构实现队列)
    盒子(Box, ACM/ICPC NEERC 2004, UVa1587)rust解法
  • 原文地址:https://blog.csdn.net/daybreak_alonely/article/details/127639995