CF1610C.Keshi Is Throwing a Party
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Keshi is throwing a party and he wants everybody in the party to be happy.
He has n friends. His i -th friend has i dollars.
If you invite the i -th friend to the party, he will be happy only if at most ai people in the party are strictly richer than him and at most bi people are strictly poorer than him.
Keshi wants to invite as many people as possible. Find the maximum number of people he can invite to the party so that every invited person would be happy.
输入格式
The first line contains a single integer t (1≤t≤104) — the number of test cases. The description of the test cases follows.
The first line of each test case contains a single integer n (1≤n≤2⋅105) — the number of Keshi's friends.
The i -th of the following n lines contains two integers ai and bi (0≤ai,bi<n) .
It is guaranteed that the sum of n over all test cases doesn't exceed 2⋅105 .
输出格式
For each test case print the maximum number of people Keshi can invite.
输入输出样例
输入#1
3 3 1 2 2 1 1 1 2 0 0 0 1 2 1 0 0 1
输出#1
2 1 2
说明/提示
In the first test case, he invites the first and the second person. If he invites all of them, the third person won't be happy because there will be more than 1 person poorer than him.