2224.Cells Not Under Attack

Time Limit: 1s Memory Limit: 256MB

Vasya has the square chessboard of size n \times n and m rooks. Initially the chessboard is empty. Vasya will consequently put the rooks on the board one after another.

The cell of the field is under rook's attack, if there is at least one rook located in the same row or in the same column with this cell. If there is a rook located in the cell, this cell is also under attack.

You are given the positions of the board where Vasya will put rooks. For each rook you have to determine the number of cells which are not under attack after Vasya puts it on the board.

Input Format(From the terminal/stdin)

The first line of the input contains two integers n and m (1 \le n \le 100000, 1 \le m \le min(100000,n2))- the size of the board and the number of rooks.

Each of the next m lines contains integers xi and yi (1 \le xi,yi \le n)- the number of the row and the number of the column where Vasya will put the i-th rook. Vasya puts rooks on the board in the order they appear in the input. It is guaranteed that any cell will contain no more than one rook.

Output Format(To the terminal/stdout)

Print m integer, the i-th of them should be equal to the number of cells that are not under attack after first i rooks are put.

Sample Input 1

Copy
3 3
1 1
3 1
2 2
 · \n
 · \n
 · \n
 · \n

Sample Output 1

Copy
4 2 0 
 · · \n

Sample Input 2

Copy
5 2
1 5
5 1
 · \n
 · \n
 · \n

Sample Output 2

Copy
16 9 
  · \n

Sample Input 3

Copy
100000 1
300 400
      · \n
   ·   \n

Sample Output 3

Copy
9999800001 
          \n

Hints

On the picture below show the state of the board after put each of the three rooks. The cells which painted with grey color is not under the attack.

2224_1.png

Submit

请先 登录

© 2025 FAQs