程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> POJ 1733 Parity game (並查集)

POJ 1733 Parity game (並查集)

編輯:C++入門知識

題目大意:

問m個問題裡面 前面有多少個問題是不矛盾的。

問題是問區間裡的 1 個個數是奇數還是偶數。


思路分析:

和 hdu 3038 是一個模型。

然後判斷奇偶用異或就可以了。


#include 
#include 
#include 
#include 

using namespace std;

int set[55555];
int sum[55555];

struct node
{
    int s,e;
    char op;
}Q[55555];
int x[55555];

int abs(int x)
{
    return x>0?x:-x;
}

int find(int x)
{
    if(x!=set[x])
    {
        int f=set[x];
        set[x]=find(set[x]);
        sum[x]=(sum[x]^sum[f]);
    }
    return set[x];
}
int main()
{
    int n,m;
    while(scanf("%d%d",&n,&m)!=EOF)
    {
        int cnt=0;
        for(int i=0;i<=m*2;i++)set[i]=i,sum[i]=0;

        char str[10];
        for(int i=0;i

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved