博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
codeforces 701BCells Not Under Attack
阅读量:5343 次
发布时间:2019-06-15

本文共 2372 字,大约阅读时间需要 7 分钟。

B. Cells Not Under Attack
time limit per test2 seconds
memory limit per test256 megabytes
inputstandard input
outputstandard 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.

题意:在田野里面放秃鹫,每个可以使这一个秃鹫的一行和一列under the attack。求每放一个还剩几个没有under the attack;

思路:当放入的行或者列已经有秃鹫就不需要在加上那一行,当放入的行和列与其他秃鹫所在行和列会 相交。

 
#include#include
#include
#include
#include
#include
#include
#include
#include
#include
#define inf 0x3f3f3f#define ll long long#define maxn 100010using namespace std;int h[maxn],l[maxn];int main(){ ll n,m,x=0,y=0; cin>>n>>m; ll ans=n*n,anss=0; for(int i=0;i
>x1>>y1; if(h[x1]==0) x++; if(l[y1]==0) y++; if(i==0){ ans-=(2*n-1); cout<
<<" "; } else{ if((!h[x1]&&l[y1])){ ans=ans-n+y;} else if((h[x1]&&!l[y1])){ ans=ans-n+x;} else if(h[x1]&&l[y1]){ ans=ans;} else if(!h[x1]&&!l[y1]){ ans=ans-(2*n)+1+(x+y-2);} if(ans<0)ans=0; cout<
<<" "; } h[x1]=1;l[y1]=1; }}

转载于:https://www.cnblogs.com/da-mei/p/9053273.html

你可能感兴趣的文章
HDU 1016 Prime Ring Problem(dfs)
查看>>
C#中结构体与字节流互相转换
查看>>
session和xsrf
查看>>
Linux目录结构
查看>>
luoguP3414 SAC#1 - 组合数
查看>>
五一 DAY 4
查看>>
(转)接口测试用例设计(详细干货)
查看>>
【译】SSH隧道:本地和远程端口转发
查看>>
图片点击轮播(三)-----2017-04-05
查看>>
直播技术细节3
查看>>
《分布式服务架构:原理、设计于实战》总结
查看>>
java中new一个对象和对象=null有什么区别
查看>>
字母和数字键的键码值(keyCode)
查看>>
IE8调用window.open导出EXCEL文件题目
查看>>
Spring mvc初学
查看>>
有意思的代码片段
查看>>
C8051开发环境
查看>>
VTKMY 3.3 VS 2010 Configuration 配置
查看>>
01_1_准备ibatis环境
查看>>
windows中修改catalina.sh上传到linux执行报错This file is needed to run this program解决
查看>>