CF701B.Cells Not Under Attack

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Vasya has the square chessboard of size n×nn×n and mm 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.

输入格式

The first line of the input contains two integers nn and mm ( 1<=n<=1000001<=n<=100000 , 1<=m<=min(100000,n2)1<=m<=min(100000,n^{2}) ) — the size of the board and the number of rooks.

Each of the next mm lines contains integers xix_{i} and yiy_{i} ( 1<=xi,yi<=n1<=x_{i},y_{i}<=n ) — the number of the row and the number of the column where Vasya will put the ii -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.

输出格式

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

输入输出样例

  • 输入#1

    3 3
    1 1
    3 1
    2 2
    

    输出#1

    4 2 0 
    
  • 输入#2

    5 2
    1 5
    5 1
    

    输出#2

    16 9 
    
  • 输入#3

    100000 1
    300 400
    

    输出#3

    9999800001 
    

说明/提示

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.

首页