#D3258. Grid game
Grid game
Grid game
Takahashi and Aoki will play a game using a grid with H rows and W columns of square cells. There are N obstacles on this grid; the i-th obstacle is at (X_i,Y_i). Here, we represent the cell at the i-th row and j-th column (1 \leq i \leq H, 1 \leq j \leq W) by (i,j). There is no obstacle at (1,1), and there is a piece placed there at (1,1).
Starting from Takahashi, he and Aoki alternately perform one of the following actions:
- Move the piece to an adjacent cell. Here, let the position of the piece be (x,y). Then Takahashi can only move the piece to (x+1,y), and Aoki can only move the piece to (x,y+1). If the destination cell does not exist or it is occupied by an obstacle, this action cannot be taken.
- Do not move the piece, and end his turn without affecting the grid.
The game ends when the piece does not move twice in a row.
Takahashi would like to perform as many actions (including not moving the piece) as possible before the game ends, while Aoki would like to perform as few actions as possible before the game ends. How many actions will Takahashi end up performing?
Constraints
- 1 \leq H,W \leq 2\times 10^5
- 0 \leq N \leq 2\times 10^5
- 1 \leq X_i \leq H
- 1 \leq Y_i \leq W
- If i \neq j, (X_i,Y_i) \neq (X_j,Y_j)
- (X_i,Y_i) \neq (1,1)
- X_i and Y_i are integers.
Input
Input is given from Standard Input in the following format:
H W N X_1 Y_1 : X_N Y_N
Output
Print the number of actions Takahashi will end up performing.
Examples
Input
3 3 1 3 2
Output
2
Input
10 10 14 4 3 2 2 7 3 9 10 7 7 8 1 10 10 5 4 3 4 2 8 6 4 4 4 5 8 9 2
Output
6
Input
100000 100000 0
Output
100000
inputFormat
Input
Input is given from Standard Input in the following format:
H W N X_1 Y_1 : X_N Y_N
outputFormat
Output
Print the number of actions Takahashi will end up performing.
Examples
Input
3 3 1 3 2
Output
2
Input
10 10 14 4 3 2 2 7 3 9 10 7 7 8 1 10 10 5 4 3 4 2 8 6 4 4 4 5 8 9 2
Output
6
Input
100000 100000 0
Output
100000
样例
3 3 1
3 2
2