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 n candies in a candy box. The type of the i -th candy is ai ( 1≤ai≤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 1 and two candies of type 2 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 fi is given, which is equal to 0 if you really want to keep i -th candy for yourself, or 1 if you don't mind including it into your gift. It is possible that two candies of the same type have different values of fi .
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=1 in your gift.
You have to answer q 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 q ( 1≤q≤2⋅105 ) — the number of queries.
The first line of each query contains one integer n ( 1≤n≤2⋅105 ) — the number of candies.
Then n lines follow, each containing two integers ai and fi ( 1≤ai≤n , 0≤fi≤1 ), where ai is the type of the i -th candy, and fi denotes whether you want to keep the i -th candy for yourself ( 0 if you want to keep it, 1 if you don't mind giving it away).
It is guaranteed that the sum of n over all queries does not exceed 2⋅105 .
输出格式
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=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 4 and one candy of type 5 . All of them have fi=1 and you don't mind giving them away as part of the gift.