CF1183G.Candy Box (hard version)

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

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.

输入格式

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 .

输出格式

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.

输入输出样例

  • 输入#1

    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
    

    输出#1

    3 3
    3 3
    9 5
    

说明/提示

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.

首页