#P13312. [GCJ 2012 Qualification] Dancing With the Googlers

[GCJ 2012 Qualification] Dancing With the Googlers

题目描述

You're watching a show where Googlers (employees of Google) dance, and then each dancer is given a triplet of scores by three judges. Each triplet of scores consists of three integer scores from 00 to 1010 inclusive. The judges have very similar standards, so it's surprising if a triplet of scores contains two scores that are 22 apart. No triplet of scores contains scores that are more than 22 apart.

For example: (8,8,8)(8, 8, 8) and (7,8,7)(7, 8, 7) are not surprising. (6,7,8)(6, 7, 8) and (6,8,8)(6, 8, 8) are surprising. (7,6,9)(7, 6, 9) will never happen.

The total points for a Googler is the sum of the three scores in that Googler's triplet of scores. The best result for a Googler is the maximum of the three scores in that Googler's triplet of scores. Given the total points for each Googler, as well as the number of surprising triplets of scores, what is the maximum number of Googlers that could have had a best result of at least pp?

For example, suppose there were 66 Googlers, and they had the following total points: 2929, 2020, 88, 1818, 1818, 2121. You remember that there were 22 surprising triplets of scores, and you want to know how many Googlers could have gotten a best result of 88 or better.

With those total points, and knowing that two of the triplets were surprising, the triplets of scores could have been:

10 9 10
6 6 8 (*)
2 3 3
6 6 6
6 6 6
6 7 8 (*)

The cases marked with a (*) are the surprising cases. This gives us 33 Googlers who got at least one score of 88 or better. There's no series of triplets of scores that would give us a higher number than 33, so the answer is 33.

输入格式

The first line of the input gives the number of test cases, T\mathbf{T}. T\mathbf{T} test cases follow. Each test case consists of a single line containing integers separated by single spaces. The first integer will be N\mathbf{N}, the number of Googlers, and the second integer will be S\mathbf{S}, the number of surprising triplets of scores. The third integer will be p\mathbf{p}, as described above. Next will be N\mathbf{N} integers ti\mathbf{t_i}: the total points of the Googlers.

输出格式

For each test case, output one line containing "Case #xx: yy", where xx is the case number (starting from 11) and yy is the maximum number of Googlers who could have had a best result of greater than or equal to pp.

4
3 1 5 15 13 11
3 0 8 23 22 21
2 1 1 8 0
6 2 8 29 20 8 18 18 21
Case #1: 3
Case #2: 2
Case #3: 1
Case #4: 3

提示

Limits

  • 1T1001 \leq T \leq 100.
  • 0SN0 \leq S \leq N.
  • 0p100 \leq p \leq 10.
  • 0ti300 \leq t_i \leq 30.
  • At least SS of the tit_i values will be between 22 and 2828, inclusive.

Test set 1 (10 Pts, Visible Verdict)

  • 1N31 \leq N \leq 3.

Test set 2 (10 Pts, Hidden Verdict)

  • 1N1001 \leq N \leq 100.