CF BUDDY
← Problems·

1183G · Candy Box (hard version)

2000 · greedy, implementation, sortings

Problem: This problem is a version of problem D from the same contest with some additional constraints and tasks.

There are nn candies in a candy box. The type of the ii-th candy is aia_i (1ain1 \le a_i \le n).

You have to prepare a gift using some of these candies with the following restriction: the numbers of candies of each type presented in a gift should be all distinct (i. e. for example, a gift having two candies of type 11 and two candies of type 22 is bad).

It is possible that multiple types of candies are completely absent from the gift. It is also possible that not all candies of some types will be taken to a gift.

You really like some of the candies and don't want to include them into the gift, but you want to eat them yourself instead. For each candy, a number fif_i is given, which is equal to 00 if you really want to keep ii-th candy for yourself, or 11 if you don't mind including it into your gift. It is possible that two candies of the same type have different values of fif_i.

You want your gift to be as large as possible, but you don't want to include too many of the candies you want to eat into the gift. So, you want to calculate the maximum possible number of candies that can be included into a gift, and among all ways to choose maximum number of candies, you want to maximize the number of candies having fi=1f_i = 1 in your gift.

You have to answer qq independent queries.

If you are Python programmer, consider using PyPy instead of Python when you submit your code.

Input Format: The first line of the input contains one integer qq (1q21051 \le q \le 2 \cdot 10^5) — the number of queries.

The first line of each query contains one integer nn (1n21051 \le n \le 2 \cdot 10^5) — the number of candies.

Then nn lines follow, each containing two integers aia_i and fif_i (1ain1 \le a_i \le n, 0fi10 \le f_i \le 1), where aia_i is the type of the ii-th candy, and fif_i denotes whether you want to keep the ii-th candy for yourself (00 if you want to keep it, 11 if you don't mind giving it away).

It is guaranteed that the sum of nn over all queries does not exceed 21052 \cdot 10^5.

Output Format: For each query print two integers:

  • the maximum number of candies in a gift you can compose, according to the constraints in the statement;
  • the maximum number of candies having fi=1f_i = 1 in a gift you can compose that contains the maximum possible number of candies.

Note: In the first query, you can include two candies of type 44 and one candy of type 55. All of them have fi=1f_i = 1 and you don't mind giving them away as part of the gift.

Sample Cases

Case 1

Input

3
8
1 0
4 1
2 0
4 1
5 1
6 1
3 0
2 0
4
1 1
1 1
2 1
2 1
9
2 0
2 0
4 1
4 1
4 1
7 0
7 1
7 0
7 1

Output

3 3
3 3
9 5

Similar problems

00:00:00
Loading editor…
Welcome! I'm your coding tutor for this problem. Use the chips below to reveal stored hints or get AI feedback on your code. I'll guide you step by step — never giving away the solution.

Sign in to unlock AI tutor feedback