zoukankan      html  css  js  c++  java
  • A1011World 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 Lfor 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.1  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 ( 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 2.5 1.7
    1.2 3.1 1.6
    4.1 1.2 1.1
    
     

    Sample Output:

    T T W 39.31

    思路:

    •开a[3]在每一组的输入中找到最大的一个数,并记录此时的下标,并做pro*=a[maxi]运算;

    •利用mp进行映射将下标输出成字符。

     1 #include <iostream>
     2 using namespace std;
     3 int main() {
     4     double a[3] = { 0 },pro=1.0;
     5     int b[3] = { 0 },maxi;
     6     for (int i = 0; i < 3; i++) {
     7         cin >> a[0] >> a[1] >> a[2];
     8         maxi = a[0] >= a[1] ? 0 : 1;
     9         maxi = a[maxi] >= a[2] ? maxi : 2;
    10         pro *= a[maxi];
    11         b[i] = maxi;
    12     }
    13     char mp[3] = { 'W','T','L' };
    14     for (int i = 0; i < 3; i++) {
    15         printf("%c ", mp[b[i]]);
    16     }
    17     pro = (pro*0.65 - 1) * 2;
    18     printf("%.2lf", pro);
    19     return 0;
    20 }
    作者:PennyXia
             
    本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。
  • 相关阅读:
    Bootstrap学习js插件篇之提示框
    动态装载外部JavaScript脚本文件
    Bootstrap学习js插件篇之滚动监听
    ASP.NET 仿腾讯微博提示“还能输入*个字符”的实现
    Javascript 操作 Sql中的Xml 字段
    Bootstrap学习js插件篇之标签页
    CSS垂直水平完全居中手册
    Bootstrap学习js插件篇之下拉菜单
    国庆大礼包:2014年最全的ANDROID GUI模板和线框图免费下载
    网上收集:跟着 8 张思维导图学习 Javascript【转】
  • 原文地址:https://www.cnblogs.com/PennyXia/p/12288260.html
Copyright © 2011-2022 走看看