B. Cells Not Under Attack
time limit per test

2 seconds

memory limit per test

256 megabytes

input

standard input

output

standard output

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

The first line of the input contains two integers n and m (1 ≤ n ≤ 100 000, 1 ≤ m ≤ min(100 000, n2)) — the size of the board and the number of rooks.

Each of the next m lines contains integers xi and yi (1 ≤ xi, yi ≤ 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

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.

Examples
Input
3 3
1 1
3 1
2 2
Output
4 2 0 
Input
5 2
1 5
5 1
Output
16 9 
Input
100000 1
300 400
Output
9999800001 
Note

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.

题意:n*n的棋盘  m个rook(车 象棋中的ju)  给你m的车的坐标 车所在的行列不能摆放棋子

每摆放一个车 输出还能摆放其他旗子的位置的数量  具体看样例

题解:每次增加一个车 都更新不能摆放棋子的行列的个数 ro,cl

注意行列的交叉点会重复计算 记录每次的结果为ans=n*n-(ro+cl)*n+ro*cl;

 //code  by drizzle
#include<bits/stdc++.h>
#include<iostream>
#include<cstring>
#include<cstdio>
#define ll __int64
#define PI acos(-1.0)
#define mod 1000000007
using namespace std;
ll n,m;
ll h[];
ll l[];
ll cl,ro;
ll x,y;
ll ans[];
int main()
{
cl=;
ro=;
scanf("%I64d %I64d",&n,&m);
memset(l,,sizeof(l));
memset(h,,sizeof(h));
for(int i=;i<=m;i++)
{
scanf("%I64d %I64d",&x,&y);
if(h[x]==)
{
h[x]=;
ro++;
}
if(l[y]==)
{
l[y]=;
cl++;
}
ans[i]=n*n-(ro+cl)*n+ro*cl;
}
printf("%I64d",ans[]);
for(int i=;i<=m;i++)
printf(" %I64d",ans[i]);
return ;
}

最新文章

  1. Oracle生成指定表的列名,并前后添加select from
  2. jQuery动态设置样式List item
  3. bzoj4409&amp;&amp;bzoj4410&amp;&amp;bzoj4411[Usaco2016 Feb Platinum]题解
  4. Android Acitivity 生命周期
  5. 以Debug模式启动JBoss
  6. cocos2d-x-3.0 的改变,由于变得太多,一点点累积吧!
  7. SlidingMenu实战系列
  8. asp.net使用httphandler打包多CSS或JS文件以加快页面加载速度
  9. SQL语句新建表,同时添加主键、索引、约束
  10. 寻找对象在父元素下的index
  11. linux设置中文环境
  12. 浅谈 IE下innerHTML导致的问题
  13. wince天气代码
  14. ural1682 Crazy Professor
  15. PHP开发中Redis安装(CentOS6.5)
  16. java项目----衣服购买
  17. vs2012,打开早期版本窗体错误
  18. mybatis 动态sql 插入报错
  19. .NET 使用 RabbitMQ 图文简介
  20. visual tudio 2017--发布

热门文章

  1. Luogu [P1334] 瑞瑞的木板(手写堆)
  2. iOS开发——应用间跳转
  3. 正则表达式-基础知识Review
  4. Python猫荐书系列之七:Python入门书籍有哪些?
  5. A1055 The World&#39;s Richest(25 分)
  6. [Poj3281]Dining(最大流)
  7. Cuba studio框架中使用thymeteaf模板时中文乱码
  8. itchat 动态注册
  9. HDFS上传文件
  10. 转投emacs