BAISED - Biased Standings

no tags 

Usually, results of competitions are based on the scores of participants. However, we are planning a change for the next year of IPSC. During the registration each team will be able to enter a single positive integer : their preferred place in the ranklist. We would take all these preferences into account, and at the end of the competition we will simply announce a ranklist that would please all of you.

But wait... How would that ranklist look like if it won't be possible to satisfy all the requests?

Suppose that we already have a ranklist. For each team, compute the distance between their preferred place and their place in the ranklist. The sum of these distances will be called the badness of this ranklist.

Problem specification

Given team names and their preferred placements find one ranklist with the minimal possible badness.

Input specification

The first line of the input file contains an integer T specifying the number of test cases. Each test case is preceded by a blank line.

Each test case looks as follows: The first line contains N : the number of teams participating in the competition. Each of the next N lines contains a team name (a string of letters and numbers) and its preferred place (an integer between 1 and N, inclusive). No two team names will be equal.

Output specification

For each of the test cases output a single line with a single integer : the badness of the best ranklist for the given teams.

Example

Input:
2

7
noobz 1
llamas 2
Winn3rz 2
5thwheel 1
NotoricCoders 5
StrangeCase 7
WhoKnows 7

3
ThreeHeadedMonkey 1
MoscowSUx13 1
NeedForSuccess 1

Output:
5
3
Explanation:

In the first test case, one possible ranklist with the minimal badness is:

1. noobz
2. llamas
3. Winn3rz
4. 5thwheel
5. NotoricCoders
6. WhoKnows
7. StrangeCase

In the second test case all ranklists are equally good.

Note: the input file will not exceed 5MB.

hide comments
dreamer_: 2023-03-16 12:48:00

*important
they have not specified but you have to use long long int.

bhaaratii: 2022-12-25 08:58:24

Why Java? Whyy!

red_jainesh: 2022-10-24 06:23:29

i wasted 10 minutes to think whats the edge case being missed where it was just integer overflow problem. Problem setter please mention constraints they are very handful.

pathfinder1729: 2021-07-23 20:29:59

use long long int instead of int

preet1499: 2020-12-10 13:21:19

*USE long long int instead of int*

shivamyadav00: 2020-10-19 06:22:42

In python, make sure to consider the empty line between inputs (before each test case). Cost me a runtime error!.

tarun_28: 2020-10-05 10:25:48

use vector of pairs;)

bala_24: 2020-09-25 10:05:01

How can we prove that sorting of preferred ranks would give us optimal answer ?

codephilic: 2020-08-22 13:48:46

This problem can be solved in O(n) time using counting sort but the rank is too high so it is preferable to use
inbuilt sort and use long long int
anyways
AC in one Go!!

avsd_47: 2020-08-15 11:57:20

Try to solve it in O(n) time.


Added by:Fudan University Problem Setters
Date:2007-12-01
Time limit:1s
Source limit:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:All except: C99 ERL JS-RHINO
Resource:IPSC 2006