Skip to content

Latest commit

 

History

History
40 lines (33 loc) · 1.13 KB

1011. World Cup Betting.md

File metadata and controls

40 lines (33 loc) · 1.13 KB

【PAT A-1011】World Cup Betting

题意概述

给出三场比赛胜(W)、平(T)、负(L)的赔率,计算最大的收益。收益计算公式为:$P=((\prod _{i=1} ^3 max({W_i,T_i,L_i})\times 65%-1)\times 2$。

输入输出格式

输入三行,每行按 W、T、L 的次序给出一场比赛的胜平负赔率。

输出一行,先输出 3 场比赛中每场比赛中最大赔率对应 W、T、L 中哪个赔率,再输出最后的最大收益,保留两位小数。

C++代码

#include <bits/stdc++.h>
using namespace std;
using gg = long long;
int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);
    double ans = 1;
    string t = "WTL";
    for (gg i = 0; i < 3; ++i) {
        double m = 0, ai;
        gg index = 0;
        for (gg j = 0; j < 3; ++j) {
            cin >> ai;
            if (ai > m) {
                m = ai;
                index = j;
            }
        }
        cout << t[index] << " ";  //输出每场比赛最大的那个数对应的WTL字符
        ans *= m;  //累乘
    }
    cout << fixed << setprecision(2) << (ans * 0.65 - 1) * 2;  //输出收益
    return 0;
}