• 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. }


  • 相关阅读:
    Python常用IDE选择与安装
    Matlab自学笔记二十三:字符串的提取、替换、插入和删除
    机器学习简介
    01 Python进阶:正则表达式
    OPTEE异常调用栈解析
    思腾云计算
    【虚拟语气练习题】对现在的虚拟
    安利几个好用的图片转文字识别软件
    Win11校园网无法连接怎么办?Win11连接不到校园网的解决方法
    Go 言 Go 语,一文看懂 Go 语言文件操作
  • 原文地址:https://blog.csdn.net/daybreak_alonely/article/details/127639995