B - Different Distribution Editorial /

Time Limit: 2 sec / Memory Limit: 256 MB

配点 : 200200

問題文

何人かの人がゲームをしました。全ての人の点数は異なる非負整数でした。

高橋君は、NN 個の情報を持っています。ii 個目の情報は、得点の大きいほうから AiA_i 番目の人の得点が BiB_i 点であったことを表します。

ゲームの参加人数としてありうる最大値を求めてください。

制約

  • 1N1051 \leq N \leq 10^5
  • 1Ai109(1iN)1 \leq A_i \leq 10^9(1\leq i\leq N)
  • 0Bi109(1iN)0 \leq B_i \leq 10^9(1\leq i\leq N)
  • iji ≠ j ならば AiAjA_i ≠ A_j
  • 与えられる条件すべてを満たす得点の組が存在することが保障される
  • 入力は全て整数である

入力

入力は以下の形式で標準入力から与えられる。

NN
A1A_1 B1B_1
:
ANA_N BNB_N

出力

ゲームの参加人数としてありうる最大値を出力せよ。


入力例 1Copy

Copy
3
4 7
2 9
6 2

出力例 1Copy

Copy
8

点数が大きいほうから順に 12,9,8,7,5,2,1,012,9,8,7,5,2,1,0 点である状況が、参加人数の最大値を達成する一例です。


入力例 2Copy

Copy
5
1 10
3 6
5 2
4 4
2 8

出力例 2Copy

Copy
7

入力例 3Copy

Copy
2
1 1000000000
1000000000 1

出力例 3Copy

Copy
1000000001

Score : 200200 points

Problem Statement

A group of people played a game. All players had distinct scores, which are positive integers.

Takahashi knows NN facts on the players' scores. The ii-th fact is as follows: the AiA_i-th highest score among the players is BiB_i.

Find the maximum possible number of players in the game.

Constraints

  • 1N1051 \leq N \leq 10^5
  • 1Ai109(1iN)1 \leq A_i \leq 10^9(1\leq i\leq N)
  • 0Bi109(1iN)0 \leq B_i \leq 10^9(1\leq i\leq N)
  • If iji ≠ j, AiAjA_i ≠ A_j.
  • There exists a possible outcome of the game that are consistent with the facts.
  • All input values are integers.

Inputs

Input is given from Standard Input in the following format:

NN
A1A_1 B1B_1
:
ANA_N BNB_N

Outputs

Print the maximum possible number of players in the game.


Sample Input 1Copy

Copy
3
4 7
2 9
6 2

Sample Output 1Copy

Copy
8

The maximum possible number of players is achieved when, for example, the players have the following scores: 12,9,8,7,5,2,1,012,9,8,7,5,2,1,0.


Sample Input 2Copy

Copy
5
1 10
3 6
5 2
4 4
2 8

Sample Output 2Copy

Copy
7

Sample Input 3Copy

Copy
2
1 1000000000
1000000000 1

Sample Output 3Copy

Copy
1000000001


2025-04-16 (Wed)
00:42:10 +00:00