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 For example, 3 games' odds are given as the following: To obtain the maximum profit, one must buy 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 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. |
- 1.1 2.5 1.7
- 1.2 3.1 1.6
- 4.1 1.2 1.1
T T W 39.31
题目大意
有三场⽐赛,三行给出每场⽐赛的W、T、L的赔率。我们要选取每⼀场⽐赛中赔率最⼤的三个数a b c,先输出三⾏各⾃选择的是W、T、L中的哪⼀个,然后根据计算公式 (a * b * c * 0.65 – 1) * 2 输出最大收益
思路
由题目大意可得
- #include
- using namespace std;
- double Max(double W,double T,double L){
- if(W >= T && W >= L){
- cout << "W" << " ";
- return W;
- }
- if(T>=W && T>=L){
- cout << "T" << " ";
- return T;
- }
- cout << "L" << " ";
- return L;
- }
- int main()
- {
- double a,b,c,result=1;
- for(int z=0;z<3;z++){
- cin >> a >> b >> c;
- result *= Max(a,b,c);
- }
- result = (result*0.65-1) * 2;
- printf("%.2f",result);
- return 0;
- }