PAT --甲级1011(1011 World Cup Betting)

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.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 (4.1×3.1×2.5×65%−1)×2=39.31(4.1\times 3.1\times 2.5\times 65\%-1)\times 2 = 39.31(4.1×3.1×2.5×65%1)×2=39.31 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 W, T 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

给3行3列的实数,求每一行的最大值并且带入给定的公式输出。

思路:按值排个序,然后通过原来的id哈希到他的胜负情况

Code

#include <bits/stdc++.h>

using namespace std;
const double esp = 1e-6;
struct Node {
	int id;
	double val;
	bool operator < (const Node& A) const {
		if (fabs(val - A.val) <= esp) {
			return id < A.id;
		}
		return val > A.val;
	}
};

Node tab[3][3];

int main() {
	char who[3] = {'W','T','L'};
	for (int i = 0; i < 3; i++) {
		for (int j = 0; j < 3; j++) {
			scanf("%lf",&tab[i][j].val);
			tab[i][j].id = j;
		}
		sort(tab[i], tab[i] + 3);
	}
	printf("%c %c %c %.2lf\n", who[tab[0][0].id],who[tab[1][0].id],who[tab[2][0].id],2.0 * (tab[0][0].val * tab[1][0].val * tab[2][0].val * 0.65 - 1));
	return 0;
}
全部评论

相关推荐

11-13 20:16
已编辑
厦门理工学院 软件测试
专业嗎喽:硕佬,把学校背景放后面几段,学校背景双非还学院,让人看了就不想往下看。 把实习经历和个人奖项放前面,用数字化简述自己实习的成果和掌握的技能,比如负责项目一次通过率90%,曾4次发现项目潜在问题风险为公司减少损失等等
点赞 评论 收藏
分享
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务