欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

棋盘

程序员文章站 2022-05-22 12:42:00
...

棋盘

题解:

如果这道题直接用模拟做的话一定会超时的,而且空间上也容易触界。也就是说,这道题只能用数字进行加减而不能用数组来模拟。那么一开始不被攻击的位置又n*n个,当放下第一个棋子时,先操作x轴,将n*n减去一个n,并且把这一行标记为已经操作过,然后总的y轴上的棋子增加一个。当下一次放y轴时,因为刚才放x轴时占了一个位置,我们要少减一个,然后总的x轴上的棋子增加一个。这样的做法巧妙地避开了二维数组和重叠的问题。

代码:

#include<iostream>
#include<cstdio>
#include<cstring>
#include<string>
#include<algorithm>
#include<cmath>
#include<cctype>
#include<climits>
#include<vector>
#include<map>
#include<stack>
#include<queue>
#define MAXA 100005
#define ipt(x) scanf("%d",&x)
using namespace std;
typedef long long LL;
int n,m,x,y,xPut,yPut;
LL cnt;
bool is_xPut[MAXA],is_yPut[MAXA];
int main() {
	//freopen("chess.in","r",stdin);
	//freopen("chess.out","w",stdout);
	ipt(n);
	ipt(m);
	cnt = (LL)n * n;
	for(int i=0;i<=m-1;i++) {
		ipt(x);
		ipt(y);
		if(!is_xPut[x]) {
			is_xPut[x] = true;
			cnt -= (n - xPut);
			yPut++;
		}
		if(!is_yPut[y]) {
			is_yPut[y] = true;
			cnt -= (n - yPut);
			xPut++;
		}
		printf("%lld\n",cnt);
	}
}