codechef Top Batsmen题解

A cricket team consists of 11 players and some are good at batting, others are good at bowling and some of them are good at both batting and bowling. The batting coach wants to select exactly K players having maximum possible sum of scores.
Given the batting score of each of the 11 players, find the number of ways in which we can select exactly K players such that the sum of their scores is the maximum possible. Two ways are different if there is a player who is selected in one
of them is not in the other. See explanation of sample cases for more clarity.

Input

First line contains T, number of test cases ( 1 ≤ T ≤ 100 ). T cases follow, each having 2 lines. First line of each case contains scores of 11 players ( 1 ≤ score ≤ 100 ) and the second line contains K (1 ≤ K ≤ 11)

Output

For each test case, output the answer in a new line.

Example

Input:
2
1 2 3 4 5 6 7 8 9 10 11
3
2 5 1 2 4 1 6 5 2 2 1
6

Output:
1
6

一个简单的组合问题。

这里主要熟悉priority_queue的用法:

1 它没有clear用法,需要手动清空,别忘记循环中清零了,我老是犯这个错误

2 使用这些容器要注意判空,否则范围溢出,也是老毛病了

当然,其实本题有更加简洁的写法。

#pragma once
#include <stdio.h>
#include <queue>
#include <vector>
using std::priority_queue;
using std::vector;

class TopBatsmen
{
	const static int TEAMS = 11;
public:
	TopBatsmen()
	{
		struct cmpTopBatsmen
		{
			bool operator()(const int a, const int b) const
			{
				return a > b;
			}
		};
		priority_queue<int,vector<int>, cmpTopBatsmen> pqi;
		int A[11] = {0};

		int T = 0;
		scanf("%d", &T);
		while (T--)
		{
			while (pqi.size()) pqi.pop();//又是忘记清空
			for (int i = 0; i < TEAMS; i++)
			{
				scanf("%d", &A[i]);
			}
			int k = 0;
			scanf("%d", &k);

			for (int i = 0; i < TEAMS; i++)
			{
				if (i < k) pqi.push(A[i]);
				else if (pqi.size() && A[i] > pqi.top())
				{
					pqi.pop();
					pqi.push(A[i]);
				}
			}

			int totalMin = 0, minIn = 1;
			for (int i = 0; i < TEAMS; i++)
			{
				if (A[i] == pqi.top()) totalMin++;
			}

			int t = -1;
			if ( pqi.size() )
			{
				t = pqi.top();
				pqi.pop();
			}
			while (pqi.size() && pqi.top() == t)//逻辑没写好错误
			{
				pqi.pop();
				minIn++;
			}
			int sma = 1, lar = 1;
			for (int i = 1, j = totalMin; i <= minIn; i++, j--)
			{
				sma *= i, lar *= j;
			}
			int ans = lar / sma;
			printf("%d\n", ans);
		}
	}
};

codechef Top Batsmen题解,布布扣,bubuko.com

时间: 2024-10-11 19:00:54

codechef Top Batsmen题解的相关文章

Codechef Nuclear Reactors 题解

There are K nuclear reactor chambers labelled from 0 to K-1. Particles are bombarded onto chamber 0. The particles keep collecting in the chamber 0. However if at any time, there are more than N particles in a chamber, a reaction will cause 1 particl

codechef Cleaning Up 题解

After a long and successful day of preparing food for the banquet, it is time to clean up. There is a list of n jobs to do before the kitchen can be closed for the night. These jobs are indexed from 1 to n. Most of the cooks have already left and onl

codechef Permutation Cycles 题解

We consider permutations of the numbers 1,..., N for some N. By permutation we mean a rearrangment of the number 1,...,N. For example 2  4  5  1  7  6  3  8 is a permutation of 1,2,...,8. Of course, 1  2  3  4  5  6  7  8 is also a permutation of 1,2

codechef Turbo Sort 题解

Input t – the number of numbers in list, then t lines follow [t <= 10^6]. Each line contains one integer: N [0 <= N <= 10^6] Output Output given numbers in non decreasing order. Example Input: 5 5 3 6 7 1 Output: 1 3 5 6 7 大数据的排序,输入和输出. 一开始使用了cou

codechef Birthday Candles 题解

Birthday Candles The chef is preparing a birthday cake for one of his guests, and his decided to write the age of the guest in candles on the cake. There are 10 types of candles, one for each of the digits '0' through '9'. The chef has forgotten the

codechef Cutting Recipes题解

Cutting Recipes The chef has a recipe he wishes to use for his guests, but the recipe will make far more food than he can serve to the guests. The chef therefore would like to make a reduced version of the recipe which has the same ratios of ingredie

codechef Prime Palindromes 题解

给定一个数,求一个新数要大于等于这个数,而这个新数既要是palindromes回文又要是prime素数. 题目很简单,有人都使用取巧的方法保存好结果直接查表. 或者暴力法求解. 这里不使用保存表的方法,也不要用暴力法.- 这些方法都不好. 使用的技巧有: 1 而是使用next palindrome的技巧,只需要O(n),n是数位,可以认为是常数了. 2 判断素数的方法,时间效率是O(sqrt(n)), n是数值大小,如果是重复判断很多数是否是素数是有办法优化的,但是如果是单个素数判断的话,我还想

codechef Recipe Reconstruction 题解

Chef had an interesting dream last night. He dreamed of a new revolutionary chicken recipe. When he woke up today he tried very hard to reconstruct the ingredient list. But, he could only remember certain ingredients. To simplify the problem, the ing

codechef Arranging Cup-cakes题解

Arranging Cup-cakes Our Chef is catering for a big corporate office party and is busy preparing different mouth watering dishes. The host has insisted that he serves his delicious cupcakes for dessert. On the day of the party, the Chef was over-seein