시간 제한메모리 제한제출정답맞힌 사람정답 비율
3 초 256 MB60342955.769%

문제

John has recently come across the definition of an inversion.

An inversion in a sequence of numbers sk is any pair si, sj such that i < j and si > sj.

John believes that inversions are a perfect tool for estimation of how well a sequence of numbers is sorted.

The smaller the number of inversions in the sequence, the better it is sorted. For example, the sequences sorted in the ascending order have zero inversions in them. Peter gave John a stack of n cards. Each card has two numbers written on it — one in red and one in blue color. John is anxious to apply his knowledge of inversions to that stack.

He places the cards in front of him in arbitrary order and calculates the total number of nice inversions in front of him. John considers an inversion to be nice if it consists of the numbers of the same color. In our case nice inversion can be formed by either two blue or two red numbers. If the number of nice inversions is too big by John’s standards, he rearranges the cards and repeats the process.

Your task is to help John find out the minimal possible number of nice inversions he can get while following his algorithm.

입력

The first line of the input file contains one integer number n — the number of cards in the deck (1 ≤ n ≤ 100 000). The following n lines describe one card each. The i-th line contains two integer numbers ri and bi (1 ≤ ri, bi ≤ 109) — the numbers written on i-th card in red and blue colors respectively.

출력

Output should contain exactly one integer number — the minimal possible number of nice inversions.

예제 입력 1

3
10 3
20 2
30 1

예제 출력 1

3

예제 입력 2

4
2 2
5 25
2 1
10 9

예제 출력 2

1