Codeforces 468B Two Sets 并查集

题目大意:给出n个数,要求将n个数分配到两个集合中,集合0中的元素x,要求A-x也再0中,同理1集合。

写了几个版本,一直WA在第8组数据...最后参考下ans,写了并查集过了

学到:1、注意离散的逻辑思维,官方答案的 从条件推逆否命题

2、并查集做法:fa[find(i)]=mp[a-p[i]]
? find(a-p[i]) :
find(n+2);

3、离散化然后hash的方法,用map时间还是承受得住的,写起来也简单

//#pragma comment(linker, "/STACK:102400000,102400000")
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <string>
#include <iostream>
#include <iomanip>
#include <cmath>
#include <map>
#include <set>
#include <queue>
using namespace std;

#define ls(rt) rt*2
#define rs(rt) rt*2+1
#define ll long long
#define ull unsigned long long
#define rep(i,s,e) for(int i=s;i<e;i++)
#define repe(i,s,e) for(int i=s;i<=e;i++)
#define CL(a,b) memset(a,b,sizeof(a))
#define IN(s) freopen(s,"r",stdin)
#define OUT(s) freopen(s,"w",stdout)
const ll ll_INF = ((ull)(-1))>>1;
const double EPS = 1e-8;
const double pi = acos(-1.0);
const int INF = 100000000;

const int MAXN = 1e5+100;

int fa[MAXN],p[MAXN],vis[MAXN];
int n,a,b;
map <int , int> mp;

int Fi(int x)
{
    if(x!=fa[x])fa[x]=Fi(fa[x]);
    return fa[x];
}

void un(int x, int y)
{
    x=Fi(x);
    y=Fi(y);
    fa[x]=y;
}
int flag;
void init()
{
    for(int i=0;i<=n+3;i++)
        fa[i]=i;
    mp.clear();
    CL(vis,0xff);
    flag=1;
}

/*void solve()
{
    for(int i=1;i<=n;i++)
    {
        if(mp[a-p[i]])
        {
            if(Fi(fa[mp[a-p[i]]])==Fi(n+2) || mp[b-p[i]])
            {
                flag=0;
                return;
            }
            else
            {
                un(mp[a-p[i]],n+1);
            }
        }
        else
        {
            if(mp[b-p[i]])
            {
                if(Fi(fa[mp[b-p[i]]]) == Fi(n+1) || mp[a-p[i]])
                {
                    flag=0;
                   return;
                }
                else
                {
                    un(mp[b-p[i]],n+2);
                }
            }
            else
            {
                flag=0;
                return;
            }
        }
    }
}*/
void solve()
{
    for(int i=1;i<=n;i++)
    {
        fa[Fi(i)] = mp[a-p[i]] ? Fi(mp[a-p[i]]) : Fi(n+2);
        fa[Fi(i)] = mp[b-p[i]] ? Fi(mp[b-p[i]]) : Fi(n+1);
    }
}

int main()
{
    //IN("D.txt");
    while(~scanf("%d%d%d",&n,&a,&b))
    {
        init();
        for(int i=1;i<=n;i++)
        {
            scanf("%d",&p[i]);
            mp[p[i]]=i;
        }
        solve();
        if(flag && Fi(n+1)!=Fi(n+2))
        {
            printf("YES\n");
            int ans[MAXN],cnt=1;
            for(int i=1;i<=n;i++)
            {
                if(Fi(i) == Fi(n+1))
                    ans[i]=0;
                else
                    ans[i]=1;
            }
            printf("%d",ans[1]);
            for(int i=2;i<=n;i++)
                printf(" %d",ans[i]);
            putchar('\n');
        }
        else
            puts("NO");

    }
    return 0;
}
时间: 2024-11-19 10:04:40

Codeforces 468B Two Sets 并查集的相关文章

codeforces 468B two set(并查集)

codeforces 468B two set(并查集)n+1 表示 B 组 n+2 表示 A 组 按照 这题的做法 应该是 如果 满足 num[ i ] a-num[ i ] 则他们同一组 但不一定 就一定是 都是 A 组 也可能都是 B 组 然而如果不满足这个条件的话,就直接加入 B组 然后如果满足 num[ i ] b-num[ i ] 则加入同一组 然后不满足就 加入 A 组 1 #include <bits/stdc++.h> 2 using namespace std ; 3 4

Codeforces 468B Two Sets(二分图匹配)

题目链接:Codeforces 468B Two Sets 题目大意:给出n个数,要求将n个数分配到两个集合中,集合0中的元素x,要求A-x也再0中,同理1集合. 解题思路:类似二分图匹配的方法. #include <cstdio> #include <cstring> #include <map> #include <stack> #include <algorithm> using namespace std; const int maxn

Codeforces 278C Learning Languages(并查集) 求连通块

Codeforces 278C Learning Languages(并查集) 求连通块 为什么最后还要getfather 一遍 比如 x 是 y 的父亲 然后你 Union(x,z) 然后 z 变成了 x 父亲 然后 y 的祖先就是错的了 题解 求一个无向图中有几个连通块 sum 特判 一下 如果 每一个人的语言都为 0 则答案为 sum 其他 答案则为 sum - 1 1 #include <bits/stdc++.h> 2 using namespace std ; 3 4 const

Codeforces 292D Connected Components (并查集)

Codeforces 292D Connected Components (并查集) 题意 给出一张无向图,每次询问删去第Li--Ri 条边 求此时有多少个连通块 题解 求出一个前缀 Li 表示 加入前 i 条边时图的连通状况 以及一个后缀 Ri 表示 加入后 i 条边时图的连通状况 对于每个询问 删除 s--t 条边 只要将 L s-1 和 R t+1 合并 一下 就行了 合并 其实 就是讲 s-1 和 t+1 对应的 f[ i ] Union 一下就行了 为什么 这就相当于把前缀 i 和 后

Codeforces 469 D. Two Sets (并查集)

题目链接:Two Sets 题意: 有n个数,要分成A.B两组,要求如果x∈A则a-x∈A,如果x∈B则b-x∈B,问是否存在一种符合要求的分法. 题解: 并查集,先增加两个点表示A和B集合的根,对于一个数x,如果a-x存在就把x和a-x放一起,否则就将x和B的根相连,如果b-x存在就把x和b-x放一起,否则就将x和A的根相连,最后看一下A和B集合的根是否相连就可以判断出有没有解了,至于分法就看这个数是和A的根相连还是B的根相连了. 1 #include<bits/stdc++.h> 2 us

Codeforces Gym 100463E Spies 并查集

Spies Time Limit: 20 Sec Memory Limit: 256 MB 题目连接 http://codeforces.com/gym/100463/attachments Description In the aftermath of Canada’s annexation of Pittsburgh tensions have been pretty high between Canada and the US. You have personally been hired

CodeForces 277A Learning Languages 并查集

The "BerCorp" company has got n employees. These employees can use m approved official languages for the formal correspondence. The languages are numbered with integers from 1 to m. For each employee we have the list of languages, which he knows

Codeforces 650C Table Compression (并查集)

题意:M×N的矩阵 让你保持每行每列的大小对应关系不变,将矩阵重写,重写后的最大值最小. 思路:离散化思想+并查集,详见代码 好题! 1 #include <iostream> 2 #include <string.h> 3 #include <stdio.h> 4 #include <algorithm> 5 #include <cmath> 6 #include <cstdlib> 7 #include <bits/stdc

CodeForces 731C C - Socks 并查集

Description Arseniy is already grown-up and independent. His mother decided to leave him alone for m days and left on a vacation. She have prepared a lot of food, left some money and washed all Arseniy's clothes. Ten minutes before her leave she real