前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >C. NEKO's Maze Game

C. NEKO's Maze Game

作者头像
某些人
发布2020-04-09 17:55:01
3210
发布2020-04-09 17:55:01
举报
文章被收录于专栏:一Wa哇一天一Wa哇一天

题目链接: 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≤10^5^, 1≤q≤10^5^).

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

代码语言:javascript
复制
5 5
2 3
1 4
2 4
2 3
1 4

output

代码语言:javascript
复制
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,这次刚好减去这里很巧妙的运用了位运算和前缀和的思想,真的太巧了,膜拜大神们呀!

代码

代码语言:javascript
复制
#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;
} 
本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2020-04-01,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • 题目链接: C. NEKO’s Maze Game
    • 题目大意
      • 解题思路
        • 代码
        领券
        问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档