首页 > 代码库 > PAT1011. World Cup Betting
PAT1011. 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:
W T L1.1 2.5 1.71.2 3.0 1.64.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.0*2.5*65%-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.71.2 3.0 1.64.1 1.2 1.1
Sample Output
T T W 37.98
思路:正常设置指针即可,但是此题不知道为什么样例输入进去以后显示的是37.97然而仍然通过了测试,可能是个人机器的原因。
1 #include<cstdio> 2 using namespace std; 3 double odd[3][3]; 4 double max[3]={ 5 -1,-1,-1 6 }; 7 int maxpoint[3]; 8 9 void Change(int index)10 {11 switch(index)12 {13 case 0:printf("W ");break;14 case 1:printf("T ");break;15 case 2:printf("L ");break;16 }17 18 }19 int main(int argc, char *argv[])20 {21 for(int i=0;i<3;i++)22 {23 for(int j=0;j<3;j++)24 {25 scanf("%lf",&odd[i][j]);26 {27 if(odd[i][j]>max[i])28 {29 maxpoint[i]=j;30 max[i]=odd[i][j];31 }32 }33 }34 }35 double sum=1.0;36 for(int i=0;i<3;i++)37 {38 int index=maxpoint[i];39 sum*=odd[i][index];40 }41 sum=(sum*0.65-1)*2;42 for(int i=0;i<3;i++)43 {44 Change(maxpoint[i]);45 } 46 //sum=sum*100;47 // int temp=(int)sum%10;48 // if(temp>=5)49 // sum++;50 //sum/=100;51 printf("%.2f\n",sum); // 四舍五入的问题 不明白。。。。 52 return 0;53 }
PAT1011. World Cup Betting