[Solution] Walktober Round G 2022 Solution - Kick Start 2022
Problem
John participates in an annual walking competition called Walktober. The competition runs for a total of days and tracks the daily steps of the participants for all the days. Each participant will be assigned a unique ID ranging from to where is the total number of registered participants. A global scoreboard is maintained tracking the daily steps of each participant.
John is determined to win Walktober this year and his goal is to score the maximum daily steps on each of the days among all the participants. Having participated in Walktober last year as well, he wanted to know how many steps he fell short of in achieving his goal. Given the previous year scoreboard, calculate the minimum additional steps he needed over his last year score in order to achieve his goal of scoring the maximum daily steps every day.
Input
The first line of the input gives the number of test cases, . test cases follow.
The first line of each test case contains three integers , , and denoting the total number of participants, the total number of days the competition runs, and the last year participant ID of John.
The next lines describe the scoreboard of the previous year and contains integers each. The -th integer of the -th line denotes the step count of the participant with ID on the -th day of the competition.
Output
For each test case, output one line containing Case #:
, where is the test case number (starting from 1) and is the minimum total additional steps needed by John to achieve his goal.
Limits
Memory limit: 1 GB.
.
.
for all and .
.
Test Set 1
Time limit: 20 seconds.
.
Test Set 2
Time limit: 40 seconds.
.
No comments:
Post a Comment