zoukankan      html  css  js  c++  java
  • POJ1733 Parity game

    Time Limit: 1000MS   Memory Limit: 65536KB   64bit IO Format: %lld & %llu

    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

    Source

     
     
    偏移量并查集。
    将读入的区间左右端点u,v看做结点,u-1到v的距离为0(有偶数个1)或1(有奇数个1),用偏移量并查集维护合并操作即可。
    由于区间端点数值可能很大,需要离散化
     1 /*by SilverN*/
     2 #include<algorithm>
     3 #include<iostream>
     4 #include<cstring>
     5 #include<cstdio>
     6 #include<cmath>
     7 #include<map>
     8 using namespace std;
     9 int read(){
    10     int x=0,f=1;char ch=getchar();
    11     while(ch<'0' || ch>'9'){if(ch=='-')f=-1;ch=getchar();}
    12     while(ch>='0' && ch<='9'){x=x*10+ch-'0';ch=getchar();}
    13     return x*f;
    14 }
    15 const int mxn=50000;
    16 map<int,int>mp;int cnt=0;
    17 int n,m;
    18 int fa[mxn];
    19 int dis[mxn];
    20 void init(){
    21     for(int i=0;i<mxn;i++){
    22         fa[i]=i;dis[i]=0;
    23     }
    24     return;
    25 }
    26 int find(int x){
    27     if(fa[x]==x)return x;
    28     int f=find(fa[x]);
    29     dis[x]=(dis[x]+dis[fa[x]])%2;
    30     fa[x]=f;
    31     return fa[x];
    32 } 
    33 int uni(int x,int y,int v){//v==0:1
    34     int fx=find(x),fy=find(y);
    35     if(fx==fy){
    36         if(dis[x]==(dis[y]+v)%2)return 1;
    37         return 0;
    38     }
    39     dis[fx]=(dis[y]-dis[x]+v+2)%2;
    40     fa[fx]=fy;
    41     return 1;
    42 }
    43 int main(){
    44     n=read();m=read();
    45     init();
    46     int u,v;char a[10];
    47     int d=0;
    48     for(int i=1;i<=m;i++){
    49         scanf("%d%d%s",&u,&v,&a);
    50         if(a[0]=='o')d=1;
    51             else d=0;
    52         u--;
    53         if(!mp.count(u)){//离散化 
    54             mp[u]=++cnt;
    55         }
    56         if(!mp.count(v)){
    57             mp[v]=++cnt;
    58         }
    59         u=mp[u];v=mp[v];
    60         if(uni(u,v,d)){
    61             continue;
    62         }
    63         else{
    64             printf("%d
    ",i-1);
    65             return 0;
    66         }
    67     }
    68     printf("%d
    ",m);
    69     return 0;
    70 }
  • 相关阅读:
    linux日常管理-rsync后台服务方式-1
    linux日常管理-rsync_ssh方式
    linux日常管理-rsync常用选项详解
    linux日常管理-rsync格式
    socket 服务端 | socket 客户端 -->黏包现象
    udp 服务端 | udp 客户端 --循环发消息
    udp 协议 服务端 | udp 客户端
    socket tcp 服务端 | socket tcp 客户端 -->之循环
    socket tcp 服务器 | socket tcp 客户端
    计算器写法 | '1-2*((60-30+(-40/5)*(9-2*5/3+7/3*99/4*2998+10*568/14))-(-4*3)/(16-3*2))'
  • 原文地址:https://www.cnblogs.com/SilverNebula/p/5889458.html
Copyright © 2011-2022 走看看