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 nn friends. His ii -th friend has ii dollars.

If you invite the ii -th friend to the party, he will be happy only if at most aia_i people in the party are strictly richer than him and at most bib_i 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 tt (1t104)(1\le t\le 10^4) — the number of test cases. The description of the test cases follows.

The first line of each test case contains a single integer nn (1n2105)(1\le n\le 2 \cdot 10^5) — the number of Keshi's friends.

The ii -th of the following nn lines contains two integers aia_i and bib_i (0ai,bi<n)(0 \le a_i, b_i < n) .

It is guaranteed that the sum of nn over all test cases doesn't exceed 21052 \cdot 10^5 .

输出格式

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 11 person poorer than him.

首页