1011 World Cup Betting (20)

题目信息

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:
W T L
1.1 2.5 1.7
1.2 3.0 1.6
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.13.02.565%-1)2 = 37.98 yuans (accurate up to 2 decimal places).
Input
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 W, T and L.
Output
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 2.5 1.7
1.2 3.0 1.6
4.1 1.2 1.1
Sample Output
T T W 37.98

代码

#include<iostream>
using namespace std;
struct gamenode{
    double W;double T;double L;
}game[3];
int main(){
    double profit=1;
    for(int i=0;i<3;i++){
        scanf("%lf %lf %lf",&game[i].W,&game[i].T,&game[i].L);
        if(game[i].W>game[i].T&&game[i].W>game[i].L){
            printf("W ");profit*=game[i].W;
        }else if(game[i].T>game[i].W&&game[i].T>game[i].L){
            printf("T ");profit*=game[i].T; 
        }else{
            printf("L ");profit*=game[i].L;
        }
    }
    printf("%.2f",(profit*0.65-1)*2);
    return 0;
    
}

测试结果

image.png
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容

  • 一 一个春日的清晨,书生整理好行囊便要向京城出发了。 “殷儿,出门在外,千万照顾着自己……”母亲在门口不住地叮嘱,...
    狐也阅读 708评论 10 12
  • #幸福是需要修出来的~每天进步1%~幸福实修14班~相亲相爱一家人徐则兰 # 20180217(26/60) 【幸...
    徐则兰阅读 227评论 0 5
  • 看到美食推荐里这家店,故事不是很特别,但是很浪漫,店主有一个法国男票,婚后老公总是想吃法国菜,店主专门学的法国菜,...
    花生酱配西洋梨阅读 383评论 0 0