poj 1733 Parity game

点击打开链接 poj 1733

1思路: 带权并查集+map+离散化思想
2分析: 由于n的值达到1000000000.所以如果还是直接用原来的方法的话肯定是不行的,所以想到了离散化思想。这里可以用map和hash离散,其它跟带权并查集一样的思路。
3注意: 这一题只有一个case,然后只要好到了ans后就直接break如果是用continue就会WA。还有如果如初结束没找到ans就输出k值。

4代码:

map版

#include<iostream>
#include<algorithm>
#include<cstdio>
#include<cstring>
#include<map>
using namespace std;
#define MAXN 10010

int n , k , ans , cnt;
int father[MAXN];
int rank[MAXN];
map<int , int>m;

/*并查集的初始化*/
void init_Set(){
    m.clear();
    ans = cnt = 0;
    for(int i = 0 ; i <= MAXN ; i++){
       father[i] = i;
       rank[i] = 0;
    }
}

/*并查集的查找*/
int find_Set(int x){
    if(father[x] == x)
       return x;
    int tmp = father[x];
    father[x] = find_Set(tmp);
    rank[x] += rank[tmp];
    rank[x] %= 2;/*要mod 2*/
    return father[x];
}

/*并查集的合并*/
void union_Set(int x , int y , int m){
     int root_x = find_Set(x);
     int root_y = find_Set(y);
     father[root_y] = root_x;
     rank[root_y] = (rank[x]-rank[y]+m+2)%2;/*注意只要有出现相减的地方要先加上2在mod 2,保证结果正确*/
}

int main(){
    int left , right;
    char ch[15];
    map<int ,int>::iterator it;
    scanf("%d%d" , &n , &k);
    init_Set();
    for(int i = 0  ; i < k ; i++){
         scanf("%d%d%s" , &left , &right , ch);
         left--;
         it = m.find(left);
         if(it == m.end())
            m[left] = cnt++;
         it = m.find(right);
         if(it == m.end())
             m[right] = cnt++;
         if(!strcmp(ch , "even")){
             if(find_Set(m[left])  == find_Set(m[right])){
                 if((rank[m[right]]-rank[m[left]]+2)%2 != 0 && !ans){/*要加上2再mod2*/
                   ans = i+1;
                   break;
                  }
               }
               else
                   union_Set(m[left] , m[right] , 0);/*合并*/
            }
          else{
              if(find_Set(m[left]) == find_Set(m[right])){
                 if((rank[m[right]]-rank[m[left]]+2)%2 != 1 && !ans){/*要先加2再mod 2*/
                   ans = i+1;
                   break;
                 }
              }
              else
                  union_Set(m[left] , m[right] , 1);/*合并*/
         }
     }
     if(ans)
        printf("%d\n" , ans-1);
     else
        printf("%d\n" , k);
    return 0;
}

hash版

/*
 思路:hash + 带权并查集 + 离散化
 分析:n非常大,所以必须使用离散化。这里就用到了hash表,把当前的点映射到另外一个整数,通过这个整数来查找和合并并查集。

 hash表的使用:用一个first数组来表示表头,由于hash值会有重复所以要用一个next数组来表示链表。first[i]表示的是hash值为i的点的映射值,next[i]表示映射值为i的点的下一个有关系的点的映射值(和邻接表一样),num[i]表示映射值为i的点的原来的值。
               这里的hash值求解选择取于法。
 */

#include<iostream>
#include<algorithm>
#include<cstdio>
#include<cstring>
using namespace std;
#define MAXN 10003

int ans , n , m , cnt;
int first[MAXN];
int next[MAXN];
int father[MAXN];
int rank[MAXN];
int num[MAXN];

/*判断是否插入成功*/
int hash_insert(int x){
    int h = x%MAXN;/*求出hash值为h*/
    int u = first[h];
    while(u != -1){
        if(num[u] == x)/*如果在hash表中直接返回映射值u*/
            return u;
        u = next[u];
    }
    cnt++;
    num[cnt] = x;/*cnt作为点x的映射值*/
    next[cnt] = first[h];/*表头往后移动*/
    first[h] = cnt;/*更新表头*/
    return cnt;
}

/*并查集的初始化*/
void init_Set(){
    ans = cnt = 0;
    memset(first , -1 , sizeof(first));
    memset(next , -1 , sizeof(next));
    memset(num , -1 , sizeof(num));
    for(int i = 0 ; i <= MAXN ; i++){
       father[i] = i;
       rank[i] = 0;
    }
}

/*并查集的查找*/
int find_Set(int x){
    if(father[x] == x)
        return x;
    int tmp = father[x];
    father[x] = find_Set(tmp);
    rank[x] = (rank[x]+rank[tmp])%2;
    return father[x];
}

/*并查集的合并*/
void union_Set(int x , int y , int m){
    int root_x = find_Set(x);
    int root_y = find_Set(y);
    father[root_y] = root_x;
    rank[root_y] = (rank[x]+m-rank[y]+2)%2;
}

int main(){
    char ch[15];
    int left , right;
    scanf("%d%d" , &n , &m);
    init_Set();
    for(int i = 0 ; i < m ; i++){
       scanf("%d%d%s" , &left , &right , ch);
       int a = hash_insert(left-1);
       int b = hash_insert(right);
       if(!strcmp(ch , "even")){
           if(find_Set(a) == find_Set(b)){
              if((rank[b]-rank[a]+2)%2 != 0 && !ans){
                 ans = i+1;
                 break;
              }
           }
           else
               union_Set(a , b , 0);
       }
       else{
           if(find_Set(a) == find_Set(b)){
              if((rank[b]-rank[a]+2)%2 != 1 && !ans){
                  ans = i+1;
                  break;
              }
           }
           union_Set(a , b , 1);
       }
    }
    if(ans)
        printf("%d\n" , ans-1);
    else
        printf("%d\n" , m);
    return 0;
}
时间: 2024-11-05 12:28:16

poj 1733 Parity game的相关文章

poj 1733 Parity game:带权并查集

链接: http://poj.org/problem?id=1733 题目: 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

并查集专题【完结】

个人整理 并查集 [poj] 第一题 poj 1182 食物链 点击打开链接poj 1182 思路: 带权并查集 分析: 1 典型的带权并查集的题目 2 如果x和y是同类的关系认为是0,如果是x吃y那么关系认为是1,那么x和y的关系为2就说明y吃x 3 那么如果x和y同类则rank[x] == rank[y] , 如果x吃y那么rank[x] == (rank[y]+1)%3 , 注意mod3的使用 点击查看代码 第二题 poj 1308 Is It A Tree? 点击打开链接 poj 130

POJ题目分类

初期: 一.基本算法:      (1)枚举. (poj1753,poj2965)      (2)贪心(poj1328,poj2109,poj2586)      (3)递归和分治法.      (4)递推.      (5)构造法.(poj3295)      (6)模拟法.(poj1068,poj2632,poj1573,poj2993,poj2996) 二.图算法:      (1)图的深度优先遍历和广度优先遍历.      (2)最短路径算法(dijkstra,bellman-ford

POJ:DNA Sorting 特殊的排序

Description One measure of ``unsortedness'' in a sequence is the number of pairs of entries that are out of order with respect to each other. For instance, in the letter sequence ``DAABEC'', this measure is 5, since D is greater than four letters to

POJ 1001 Exponentiation 无限大数的指数乘法 题解

POJ做的很好,本题就是要求一个无限位大的指数乘法结果. 要求基础:无限大数位相乘 额外要求:处理特殊情况的能力 -- 关键是考这个能力了. 所以本题的用例特别重要,再聪明的人也会疏忽某些用例的. 本题对程序健壮性的考查到达了变态级别了. 更多精彩内容:http://www.bianceng.cnhttp://www.bianceng.cn/Programming/sjjg/ 某人贴出的测试用例数据地址: http://poj.org/showmessage?message_id=76017 有

POJ 2240 Arbitrage:最短路 Floyd

Arbitrage:http://poj.org/problem?id=2240 大意: 给你m种货币,给你m种货币兑换规则,问通过这些规则最后能不能盈利.eg:1美元换0.5英镑,1英镑换10法郎,1法郎换0.21美元,这样1美元能换0.5*10*0.21=1.05美元,净赚0.05美元. 思路: 用Floyd找出每两种钱之间的最大兑换关系,遍历一遍,看有没有那种钱币最后能盈利,有就输出Yes,没有就是No.在处理钱币名称与编号之间的关系时,可以用map存(比较好用),当然也可以用字符串比较.

POJ 1860 Currency Exchange:最短路 Bellman-Ford

Currency Exchange:http://poj.org/problem?id=1860 大意:有多种货币,之间可以交换,但是需要手续费,也就是说既有汇率又有手续费.问经过交换之后能不能赚. 思路:Bellman_Ford,因为要求最长路,所以松弛条件改一下就好了. Tips: 3              2                  1                20.0货币的数量   兑换点的数量     主人公拥有的货币量    主人公拥有货币的价值1 2 1.00

POJ 1258 Agri-Net:最小生成树 Prim 模版题

Agri-Net:http://poj.org/problem?id=1258 大意:新镇长竞选宣言就是将网络带到每一个农场,给出农场个数,两两之间建光缆的耗费,求所有都联通的最小耗费. 思路:最小生成树,因为边比较稠密,用Prim做. PS:对于比较稠密的图,用Prim,对于比较稀疏的图,用 Kruskal.Kruskal是找边的过程,稀疏的话会比较快. 更多精彩内容:http://www.bianceng.cnhttp://www.bianceng.cn/Programming/sjjg/

POJ 1789 Truck History:最小生成树 Prim

Truck History:http://poj.org/problem?id=1789 大意:用一个7位的string代表一个编号,两个编号之间的距离代表这两个编号之间不同字母的个数.一个编号只能由另一个编号变化的来,变化的字母的数量就是这两个编号之间相应的距离,现在要找出一个变化方案,使得总代价最小,也就是距离之和最小. 思路:将每个字符串当成一个节点,求出每个节点之间需要变化的次数为边的权值,用Prim建立最小生成树(稠密图). 更多精彩内容:http://www.bianceng.cnh