原文链接https://www.cnblogs.com/zhouzhendong/p/CF461D.html

题解

首先我们可以发现如果确定了第一行,那么方案就唯一了。

然后,我们来看看一个点的值确定了会导致什么:

假设我们确定了红色点的值,那么所有包含橙色的格子xor起来就等于红色格子的值,绿色蓝色也是。

第一排就比较特殊了。

如果我们在对第一排奇偶分类之后,如果我们可以得到第一行的前缀xor之间的关系,那么我们就有希望解决这个问题。

再看一种情况:

类似地意思,我们会发现这个东西遇到墙会反射。

于是我们就基本可以通过权值并查集来搞定。

我们还剩下一个问题:

这样的方式还不能确定最下面一行是否满足条件。

我们来看一个东西:

通过这个我们可以意识到,第一行和最后一行是一一对应的。于是整个局面旋转180度还是一样的。于是只要第一行合法,那么最后一行也合法。

所以我们只要通过给出的点用权值并查集维护一下第一行,然后算一下答案就好了。

代码

  1. #pragma GCC optimize(2)
  2. #include <bits/stdc++.h>
  3. #define clr(x) memset(x,0,sizeof (x))
  4. #define For(i,a,b) for (int i=a;i<=b;i++)
  5. #define Fod(i,b,a) for (int i=b;i>=a;i--)
  6. using namespace std;
  7. typedef long long LL;
  8. LL read(){
  9. LL x=0,f=0;
  10. char ch=getchar();
  11. while (!isdigit(ch))
  12. f|=ch=='-',ch=getchar();
  13. while (isdigit(ch))
  14. x=(x<<1)+(x<<3)+(ch^48),ch=getchar();
  15. return f?-x:x;
  16. }
  17. const int N=100005,mod=1e9+7;
  18. int n,k;
  19. int fa[N],d[N];
  20. int getf(int x){
  21. if (fa[x]==x)
  22. return x;
  23. int f=getf(fa[x]);
  24. d[x]^=d[fa[x]];
  25. return fa[x]=f;
  26. }
  27. int Pow(int x,int y){
  28. int ans=1;
  29. for (;y;y>>=1,x=(LL)x*x%mod)
  30. if (y&1)
  31. ans=(LL)ans*x%mod;
  32. return ans;
  33. }
  34. int main(){
  35. n=read(),k=read();
  36. For(i,0,n)
  37. fa[i]=i;
  38. while (k--){
  39. int x=read(),y=read(),z;
  40. char s[10];
  41. scanf("%s",s);
  42. z=s[0]=='x'?0:1;
  43. int L=y-(x-1);
  44. if (L<1)
  45. L=1+(1-L);
  46. int R=y+(x-1);
  47. if (R>n)
  48. R=n-(R-n);
  49. L=max(0,L-2);
  50. if (getf(L)!=getf(R))
  51. d[fa[L]]=z^d[L]^d[R],fa[fa[L]]=fa[R];
  52. else if (d[L]^d[R]^z)
  53. return puts("0"),0;
  54. }
  55. int ans=-1;
  56. For(i,0,n)
  57. if (fa[i]==i)
  58. ans++;
  59. if (ans==-1)
  60. assert(0);
  61. cout<<Pow(2,ans)<<endl;
  62. return 0;
  63. }

  

Codeforces 461D. Appleman and Complicated Task 构造,计数的更多相关文章

  1. Codeforces 263A. Appleman and Easy Task

    A. Appleman and Easy Task time limit per test  1 second memory limit per test  256 megabytes input  ...

  2. [cf461D]Appleman and Complicated Task

    假设该矩形是aij,那么有a(i,j)=a(i-1,j-1)^a(i-1,j+1)^a(i-2,j),不断递归下去可以发现a(i,j)=a(1,y-x+1)^a(1,y-x+3)^--^a(1,x+y ...

  3. Codeforces Round #263 (Div. 2) A. Appleman and Easy Task【地图型搜索/判断一个点四周‘o’的个数的奇偶】

    A. Appleman and Easy Task time limit per test 1 second memory limit per test 256 megabytes input sta ...

  4. CodeForces462 A. Appleman and Easy Task

    A. Appleman and Easy Task time limit per test 1 second memory limit per test 256 megabytes input sta ...

  5. Codeforces 461B Appleman and Tree(木dp)

    题目链接:Codeforces 461B Appleman and Tree 题目大意:一棵树,以0节点为根节点,给定每一个节点的父亲节点,以及每一个点的颜色(0表示白色,1表示黑色),切断这棵树的k ...

  6. Codesforces 467E Alex and Complicated Task

    E. Alex and Complicated Task time limit per test 2 seconds memory limit per test 256 megabytes input ...

  7. Codeforces 959D. Mahmoud and Ehab and another array construction task(构造, 简单数论)

    Codeforces 959D. Mahmoud and Ehab and another array construction task 题意 构造一个任意两个数都互质的序列,使其字典序大等于a序列 ...

  8. Codeforces 558E A Simple Task(计数排序+线段树优化)

    http://codeforces.com/problemset/problem/558/E Examples input 1 abacdabcda output 1 cbcaaaabdd input ...

  9. Codeforces - 1114B - Yet Another Array Partitioning Task - 构造 - 排序

    https://codeforces.com/contest/1114/problem/B 一开始叫我做,我是不会做的,我没发现这个性质. 其实应该很好想才对,至少要选m个元素,其中m个作为最大值,从 ...

随机推荐

  1. 使用Sublime Text 3进行Markdown编辑+实时预览

    使用Sublime Text 3进行Markdown编辑+实时预览 安装软件包管理器 打开Sublime Text 3 同时按下 ctrl+` ,窗口底部出现一个小控制台 复制以下代码,粘贴到控制台的 ...

  2. [欢乐向]JavaScript之如何逼疯你的同事

    https://javascript.info/ninja-code

  3. LOJ #6285 分块入门9

    题意:区间众数,不带修改,带修改刚看了一眼没看懂cls在讲啥QAQ. 题解:按照代码中那个sqrt(n/2/log2(n))大小分块,可以用均值不等式证明的,就是假设查询和n同级,然后一通爆算就可以得 ...

  4. selenium家族发展史

    什么是Selenium? Selenium 是专门为Web应用程序编写的一个验收测试工具.Selenium测试直接运行在浏览器中,支持的浏览器包括IE(7.8.9).Mozilla Firefox.M ...

  5. GoLang-Beego使用

    1.beego 注意事项 beego的默认架构是mvc python的django默认是mtv package main import ( "github.com/astaxie/beego ...

  6. ES6 Class语法学习

    前言 大多数面向对象的编程语言都支持类和类继承的特性,而JS却不支持这些特性,只能通过其他方法定义并关联多个相似的对象,这种状态一直延续到了ES5.由于类似的库层出不穷,最终还是在ECMAScript ...

  7. mysql普通用户本机无法登录的解决办法

    背景 mysql和mariadb的用户表里存在匿名用户时,普通用户出现无法登录的情况 分析 先查看下用户表 mysql> select user, host, password from mys ...

  8. [数学笔记Mathematical Notes]2-一个带对数的积分不等式

    定理. $$\bex \int_0^1\frac{\ln^2x}{x^x}\rd x<2\int_0^1 \frac{\rd x}{x^x}. \eex$$ 证明: 由分部积分及 Fubini ...

  9. [物理学与PDEs]第5章习题1 矩阵的极分解

    证明引理 2. 1. 证明: (1)  先证明存在正交阵 ${\bf P},{\bf Q}$ 及对角阵 ${\bf D}$ 使得 $$\bex {\bf F}={\bf P}{\bf D}{\bf Q ...

  10. C++ 实现简单命令行学生管理系统

    C++ 实现简单命令行学生管理系统 预览: 编译环境是macOS.system("clear") 在windows下请换成 system("cls") #inc ...