logo AlgoBeat OnlineJudge
登录 注册

#216713. [GKS 2019 #A] Training

内存限制:1024 MiB 时间限制:3000 ms 标准输入输出
题目类型:VJudge(洛谷) 评测方式:VJudge
上传者: 匿名

题目描述

As the football coach at your local school, you have been tasked with picking a team of exactly students to represent your school. There are students for you to pick from. The -th student has a skill rating , which is a positive integer indicating how skilled they are.

You have decided that a team is fair if it has exactly students on it and they all have the same skill rating. That way, everyone plays as a team. Initially, it might not be possible to pick a fair team, so you will give some of the students one-on-one coaching. It takes one hour of coaching to increase the skill rating of any student by .

The competition season is starting very soon (in fact, the first match has already started!), so you'd like to find the minimum number of hours of coaching you need to give before you are able to pick a fair team.

输入格式

The first line of the input gives the number of test cases, . test cases follow. Each test case starts with a line containing the two integers and , the number of students and the number of students you need to pick, respectively. Then, another line follows containing integers ; the -th of these is the skill of the -th student.

输出格式

For each test case, output one line containing Case #x: y, where x is the test case number (starting from 1) and y is the minimum number of hours of coaching needed, before you can pick a fair team of students.

样例

样例输入 1

3
4 3
3 1 9 100
6 2
5 5 1 2 3 4
5 5
7 7 1 7 7

样例输出 1

Case #1: 14
Case #2: 0
Case #3: 6

数据范围与提示

In Sample Case #1, you can spend a total of hours training the first student and hours training the second one. This gives the first, second and third students a skill level of . This is the minimum time you can spend, so the answer is .

In Sample Case #2, you can already pick a fair team (the first and second student) without having to do any coaching, so the answer is .

In Sample Case #3, , so every student will be on your team. You have to spend hours training the third student, so that they have a skill of , like everyone else. This is the minimum time you can spend, so the answer is .

Limits

.

, for all .

.

Test set 1 (Visible)

.

Test set 2 (Hidden)

.