码迷,mamicode.com
首页 > 其他好文 > 详细

crossfire 346# B

时间:2016-07-23 12:13:10      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:

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 arenot 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 

#include <stdio.h>
#include <iostream>
#include <string.h>
#include <algorithm>
#include <string>
#include <math.h>
#include <cmath>
#include <vector>
#include <set>
using namespace std;
int main()
{
	 long long int n;
	 long long int m;
	 int a,b;
	 cin >> n >> m;
	 set <long long int> hang;
	 set <long long int> lie;//注意这里long long int 否则第一组数据都没法过
	 long long int total = n*n;
	 long long int new_hang;
	 long long int new_lie;
	 for(int i = 0; i < m; i++)
	 {
		 scanf("%d%d",&a,&b);
		 hang.insert(a);
		 lie.insert(b);
		 new_hang = n - hang.size();
		 new_lie = n -lie.size();
		 total = new_hang * new_lie;
		 cout << total << " ";

	 }

}

  




crossfire 346# B

标签:

原文地址:http://www.cnblogs.com/yakoazz/p/5698162.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!