BZOJ 4195: [Noi2015]程序自动分析 [并查集 离散化 | 种类并查集WA]
Posted Candy?
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了BZOJ 4195: [Noi2015]程序自动分析 [并查集 离散化 | 种类并查集WA]相关的知识,希望对你有一定的参考价值。
题意:
给出若干相等和不等关系,判断是否可行
woc NOI考这么傻逼的题飞快打了一个种类并查集交上了然后爆零...
发现相等和不等看错了异或一下再叫woc90分
然后发现md$a \neq b, a \neq c,不能得到b = c$
老老实实的把所有相等关系加并查集然后不等关系来判断吧,唉
#include <iostream> #include <cstdio> #include <cstring> #include <algorithm> using namespace std; const int N=2e6+5; typedef long long ll; inline int read(){ char c=getchar();int x=0,f=1; while(c<‘0‘||c>‘9‘){if(c==‘-‘)f=-1;c=getchar();} while(c>=‘0‘&&c<=‘9‘){x=x*10+c-‘0‘;c=getchar();} return x*f; } int n, mp[N], m; struct meow{ int x, y, e; bool operator <(const meow &a) const {return e<a.e;} } a[N]; int fa[N], val[N]; int find(int x) {return x==fa[x] ? x : fa[x]=find(fa[x]);} int main() { freopen("in","r",stdin); int T=read(); while(T--) { n=read(); m=0; for(int i=1; i<=n; i++) mp[++m]=a[i].x=read(), mp[++m]=a[i].y=read(), a[i].e=read()^1; sort(mp+1, mp+1+m); m = unique(mp+1, mp+1+m) - mp - 1; for(int i=1; i<=m; i++) fa[i]=i, val[i]=0; int flag=1, i; sort(a+1, a+1+n); for(i=1; i<=n && !a[i].e; i++) { a[i].x = lower_bound(mp+1, mp+1+m, a[i].x) - mp; a[i].y = lower_bound(mp+1, mp+1+m, a[i].y) - mp; fa[find(a[i].x)] = find(a[i].y); } for(; i<=n; i++) { a[i].x = lower_bound(mp+1, mp+1+m, a[i].x) - mp; a[i].y = lower_bound(mp+1, mp+1+m, a[i].y) - mp; if(find(a[i].x) == find(a[i].y) ) {puts("NO"); flag=0; break;} } if(flag) puts("YES"); } }
以上是关于BZOJ 4195: [Noi2015]程序自动分析 [并查集 离散化 | 种类并查集WA]的主要内容,如果未能解决你的问题,请参考以下文章
[BZOJ4195] [NOI2015] 程序自动分析 (并查集)
BZOJ-4195: [Noi2015]程序自动分析 (并查集)