Parity game
Time Limit: 1000MS   Memory Limit: 65536K
Total Submissions: 6816   Accepted: 2636

Description

Now and then you play the following game with your friend. Your friend writes down a sequence consisting of zeroes and ones. You choose a continuous subsequence (for example the subsequence from the third to the fifth digit inclusively) and ask him, whether this subsequence contains even or odd number of ones. Your friend answers your question and you can ask him about another subsequence and so on. Your task is to guess the entire sequence of numbers.

You suspect some of your friend's answers may not be correct and you want to convict him of falsehood. Thus you have decided to write a program to help you in this matter. The program will receive a series of your questions together with the answers you have received from your friend. The aim of this program is to find the first answer which is provably wrong, i.e. that there exists a sequence satisfying answers to all the previous questions, but no such sequence satisfies this answer.

Input

The first line of input contains one number, which is the length of the sequence of zeroes and ones. This length is less or equal to 1000000000. In the second line, there is one positive integer which is the number of questions asked and answers to them. The number of questions and answers is less or equal to 5000. The remaining lines specify questions and answers. Each line contains one question and the answer to this question: two integers (the position of the first and last digit in the chosen subsequence) and one word which is either `even' or `odd' (the answer, i.e. the parity of the number of ones in the chosen subsequence, where `even' means an even number of ones and `odd' means an odd number).

Output

There is only one line in output containing one integer X. Number X says that there exists a sequence of zeroes and ones satisfying first X parity conditions, but there exists none satisfying X+1 conditions. If there exists a sequence of zeroes and ones satisfying all the given conditions, then number X should be the number of all the questions asked.

Sample Input

10
5
1 2 even
3 4 odd
5 6 even
1 6 even
7 10 odd

Sample Output

3

和上一题很类似,但是这题给的范围太大,数组开不下,所以直接用map映射一下,还有个性质就是  奇数+奇数=偶数 奇数+偶数=奇数 偶数+偶数=偶数。
括号打偏了WA了一发,囧
#include <iostream>
#include <cstdio>
#include <string>
#include <queue>
#include <vector>
#include <map>
#include <algorithm>
#include <cstring>
#include <cctype>
#include <cstdlib>
#include <cmath>
#include <ctime>
using namespace std; map<int,int> ROOT;
map<int,int> SUM;
int N,M,ANS;
bool FLAG; int find_father(int);
void unite(int,int,int);
int main(void)
{
int x,y,w;
char box[]; while(scanf("%d%d",&N,&M) != EOF)
{
ROOT.clear();
SUM.clear();
FLAG = false;
for(int i = ;i <= M;i ++)
{
scanf("%d%d%s",&x,&y,box);
y ++;
if(FLAG)
continue;
w = box[] == 'e' ? : ;
unite(x,y,w);
if(FLAG)
ANS = i - ;
}
if(!FLAG)
ANS = M;
printf("%d\n",ANS);
} return ;
} int find_father(int n)
{
if(!ROOT[n])
return n;
int temp = ROOT[n];
ROOT[n] = find_father(ROOT[n]);
SUM[n] = (SUM[n] + SUM[temp]) % ;
return ROOT[n];
} void unite(int x,int y,int w)
{
int fx = find_father(x);
int fy = find_father(y); if(fx == fy)
{
if((SUM[x] + - SUM[y]) % != w)
FLAG = true;
return ;
}
if(fx < fy)
{
ROOT[fx] = fy;
SUM[fx] = (-SUM[x] + w + SUM[y]) % ;
}
else
{
ROOT[fy] = fx;
SUM[fy] = (-SUM[y] - w + SUM[x]) % ;
}
}

最新文章

  1. Lodash.js的库
  2. supervisor-2:event
  3. 纯window下VMware 安装 OS X El Capitan 原版映像【未完待续】
  4. jq生成目录文件树jQuery Ztree基本用法
  5. 理解smart pointer之三:unique_ptr
  6. HDU 5000
  7. 【转】jquery-取消冒泡
  8. iOS 添加阴影后 屏幕卡顿 抖动
  9. poj2406 周期
  10. POJ1502: MPI Maelstrom
  11. linux 管道命令 小记
  12. Svg操作
  13. MAC上使用maven打android的包,报错:No Android SDK path could be found. 解决办法
  14. win10 UWP 隐式转换
  15. 你知道RxJava也可以实现AsyncTask吗?
  16. 微软开发者大会:VS 2019 Preview 发布;Windows UX 主要技术开源
  17. no module named selenium
  18. springboot动态多数据源切换
  19. 利用教育邮箱注册JetBrains产品(pycharm、idea等)的方法
  20. 自建Kubernetes logtail日志采集客户端安装方式

热门文章

  1. SpringMVC+JPA使用注入的方式环境搭建
  2. CloudStack4.2 更新全局参数API
  3. CentOS7安装telnet服务
  4. &lt;创建和销毁对象&gt;经验法则——考虑用静态工厂方法代替公有构造方法
  5. CriminalIntent程序中Fragment相关内容
  6. Notepad++配置Python运行环境
  7. NISSAN 尼桑 J1962 诊断座
  8. Python在Windows上的安装
  9. Cocos2dx Widget button透明区域过滤
  10. 推荐资料——最受网友力荐的30份HTML前端开发资料