CF1915F.Greetings

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

There are nn people on the number line; the ii -th person is at point aia_i and wants to go to point bib_i . For each person, ai<bia_i < b_i , and the starting and ending points of all people are distinct. (That is, all of the 2n2n numbers a1,a2,,an,b1,b2,,bna_1, a_2, \dots, a_n, b_1, b_2, \dots, b_n are distinct.)

All the people will start moving simultaneously at a speed of 11 unit per second until they reach their final point bib_i . When two people meet at the same point, they will greet each other once. How many greetings will there be?

Note that a person can still greet other people even if they have reached their final point.

输入格式

The first line of the input contains a single integer tt ( 1t1041 \le t \le 10^4 ) — the number of test cases. The description of test cases follows.

The first line of each test case contains a single integer nn ( 1n21051 \le n \le 2 \cdot 10^5 ) — the number of people.

Then nn lines follow, the ii -th of which contains two integers aia_i and bib_i ( 109ai<bi109-10^9 \leq a_i < b_i \leq 10^9 ) — the starting and ending positions of each person.

For each test case, all of the 2n2n numbers a1,a2,,an,b1,b2,,bna_1, a_2, \dots, a_n, b_1, b_2, \dots, b_n are distinct.

The sum of nn over all test cases does not exceed 21052 \cdot 10^5 .

输出格式

For each test case, output a single integer denoting the number of greetings that will happen.

输入输出样例

  • 输入#1

    5
    2
    2 3
    1 4
    6
    2 6
    3 9
    4 5
    1 8
    7 10
    -2 100
    4
    -10 10
    -5 5
    -12 12
    -13 13
    5
    -4 9
    -2 5
    3 4
    6 7
    8 10
    4
    1 2
    3 4
    5 6
    7 8

    输出#1

    1
    9
    6
    4
    0

说明/提示

In the first test case, the two people will meet at point 33 and greet each other.

首页