C. NEKO's Maze Game

25 篇文章 1 订阅

题目链接: C. NEKO’s Maze Game

time limit per test:1.5 seconds
memory limit per test:256 megabytes
inputstandard input
outputstandard output

NEKO#ΦωΦ has just got a new maze game on her PC!

The game’s main puzzle is a maze, in the forms of a 2×n rectangle grid. NEKO’s task is to lead a Nekomimi girl from cell (1,1) to the gate at (2,n) and escape the maze. The girl can only move between cells sharing a common side.

However, at some moments during the game, some cells may change their state: either from normal ground to lava (which forbids movement into that cell), or vice versa (which makes that cell passable again). Initially all cells are of the ground type.

After hours of streaming, NEKO finally figured out there are only q such moments: the i-th moment toggles the state of cell (ri,ci) (either from ground to lava or vice versa).

Knowing this, NEKO wonders, after each of the q moments, whether it is still possible to move from cell (1,1) to cell (2,n) without going through any lava cells.

Although NEKO is a great streamer and gamer, she still can’t get through quizzes and problems requiring large amount of Brain Power. Can you help her?

Input
The first line contains integers n, q (2≤n≤105, 1≤q≤105).

The i-th of q following lines contains two integers ri, ci (1≤ri≤2, 1≤ci≤n), denoting the coordinates of the cell to be flipped at the i-th moment.

It is guaranteed that cells (1,1) and (2,n) never appear in the query list.

Output
For each moment, if it is possible to travel from cell (1,1) to cell (2,n), print “Yes”, otherwise print “No”. There should be exactly q answers, one after every update.
You can print the words in any case (either lowercase, uppercase or mixed).

input

5 5
2 3
1 4
2 4
2 3
1 4

output

Yes
No
No
No
Yes

Note
We’ll crack down the example test here:

After the first query, the girl still able to reach the goal. One of the shortest path ways should be: (1,1)→(1,2)→(1,3)→(1,4)→(1,5)→(2,5).
After the second query, it’s impossible to move to the goal, since the farthest cell she could reach is (1,3).
After the fourth query, the (2,3) is not blocked, but now all the 4-th column is blocked, so she still can’t reach the goal.
After the fifth query, the column barrier has been lifted, thus she can go to the final goal again.

题目大意

给你一个2xN的表格,一共有q次查询,每次查询前会有一个表格变成岩浆不能走,或者从岩浆变回了可以总,问你能否从1 1这个表格走到2 n这个位置,可以的话就输出“Yse”,否则就是“No”;

解题思路

表格的变换我们可以用位运算 异或 来处理,问题是我们怎么判断这次变化后是否可行呢?经过画图的多次尝试,我们发现如果这次不行,那么肯定至少有一列都是岩浆或者至少有一个对角线的位置是岩浆,因此我们可以运用类似前缀和的思想,每次统计以变化位置为中心的连着三个对立位置如果该位置是岩浆,就统计对面三个位置有几个熔浆,如果是可以走,那就减去前面位置有几块熔浆如果结果为零那说明可以走,因为没有一块岩浆,如果不唯一就不行,这里为什么呢?你想呀,如果你这个位置查询的时候是0,可以走的说明什么?说明之前他是1不能走,既然之前不能走,那之前的ans肯定包含不能走时的转态,如果上一次这三个位置都是0,ans加的是0,这次减得也是零对结果没影响,如果上次这三个位置是1呢?说明上次ans加了三个1,这次刚好减去这里很巧妙的运用了位运算和前缀和的思想,真的太巧了,膜拜大神们呀!

代码

#include<bits/stdc++.h>
using namespace std;
const int mx=1e5+10;
int a[2][mx];

int main()
{
	int q,ans=0,n;
	cin>>n>>q;
	int x,y;
	while(q--)
	{
		cin>>x>>y;
		x--;//x--,方便以后的 ^ 运算 
		a[x][y]^=1;//改变这个位置的状态 
		int m=a[x][y]*2-1;//如果是 0 就是可以走,那结果就要减,1的话加 
		ans+=m*(a[x^1][y-1]+a[x^1][y]+a[x^1][y+1]);//进行ans的累加 
		if(ans==0)
		cout<<"Yes"<<'\n';
		else cout<<"No"<<'\n';
	}
	return 0;
} 
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值