6878: ABC170 —— E - Smart Infants
Description
From now on, $Q$ transfers will happen. After the $j$-th transfer, Infant $C_j$ will belong to Kindergarten $D_j$.
Here, we define the evenness as follows. For each kindergarten with one or more infants registered in AtCoder, let us find the highest rating of an infant in the kindergarten. The evenness is then defined as the lowest among those ratings.
For each of the $Q$ transfers, find the evenness just after the transfer.
Input
$N\ Q$
$A_1\ B_1$
$A_2\ B_2$
$\vdots$
$A_N\ B_N$
$C_1\ D_1$
$C_2\ D_2$
$\vdots$
$C_Q\ D_Q$
Output
Constraints
$1 \leq A_i \leq 10^9$
$1 \leq C_j \leq N$
$1 \leq B_i,D_j \leq 2 \times 10^5$
All values in input are integers.
In the $j$-th transfer, Infant $C_j$ changes the kindergarten it belongs to.
Sample 1 Input
6 3
8 1
6 2
9 3
1 1
2 2
1 3
4 3
2 1
1 2
Sample 1 Output
6
2
6
Initially, Infant $1, 4$ belongs to Kindergarten $1$, Infant $2, 5$ belongs to Kindergarten $2$, and Infant $3, 6$ belongs to Kindergarten $3$.
After the $1$-st transfer that makes Infant $4$ belong to Kindergarten $3$, Infant $1$ belongs to Kindergarten $1$, Infant $2, 5$ belong to Kindergarten $2$, and Infant $3, 4, 6$ belong to Kindergarten $3$. The highest ratings of an infant in Kindergarten $1, 2, 3$ are $8, 6, 9$, respectively. The lowest among them is $6$, so the $1$-st line in the output should contain $6$.
After the $2$-nd transfer that makes Infant $2$ belong to Kindergarten $1$, Infant $1, 2$ belong to Kindergarten $1$, Infant $5$ belongs to Kindergarten $2$, and Infant $3, 4, 6$ belong to Kindergarten $3$. The highest ratings of an infant in Kindergarten $1, 2, 3$ are $8, 2, 9$, respectively. The lowest among them is $2$, so the $2$-nd line in the output should contain $2$.
After the $3$-rd transfer that makes Infant $1$ belong to Kindergarten $2$, Infant $2$ belongs to Kindergarten $1$, Infant $1, 5$ belong to Kindergarten $2$, and Infant $3, 4, 6$ belong to Kindergarten $3$. The highest ratings of an infant in Kindergarten $1, 2, 3$ are $6, 8, 9$, respectively. The lowest among them is $6$, so the $3$-rd line in the output should contain $6$.
Sample 2 Input
2 2
4208 1234
3056 5678
1 2020
2 2020
Sample 2 Output
3056
4208