大意: 动态添边, 询问是否是二分图.

算是个线段树按时间分治入门题, 并查集维护每个点到根的奇偶性即可.

#include <iostream>
#include <sstream>
#include <algorithm>
#include <cstdio>
#include <cmath>
#include <set>
#include <map>
#include <queue>
#include <string>
#include <cstring>
#include <bitset>
#include <functional>
#include <random>
#define REP(i,a,n) for(int i=a;i<=n;++i)
#define PER(i,a,n) for(int i=n;i>=a;--i)
#define hr putchar(10)
#define pb push_back
#define lc (o<<1)
#define rc (lc|1)
#define mid ((l+r)>>1)
#define ls lc,l,mid
#define rs rc,mid+1,r
#define x first
#define y second
#define io std::ios::sync_with_stdio(false)
#define endl '\n'
#define DB(a) ({REP(__i,1,n) cout<<a[__i]<<',';hr;})
using namespace std;
typedef long long ll;
typedef pair<int,int> pii;
const int P = 1e9+7, INF = 0x3f3f3f3f;
ll gcd(ll a,ll b) {return b?gcd(b,a%b):a;}
ll qpow(ll a,ll n) {ll r=1%P;for (a%=P;n;a=a*a%P,n>>=1)if(n&1)r=r*a%P;return r;}
ll inv(ll x){return x<=1?1:inv(P%x)*(P-P/x)%P;}
inline int rd() {int x=0;char p=getchar();while(p<'0'||p>'9')p=getchar();while(p>='0'&&p<='9')x=x*10+p-'0',p=getchar();return x;}
//head const int N = 1e6+50;
int n, q, fa[N], sz[N], dis[N];
map<pii,vector<int> > g; vector<pii> tr[N<<2];
void add(int o, int l, int r, int ql, int qr, pii v) {
if (ql<=l&&r<=qr) return tr[o].pb(v);
if (mid>=ql) add(ls,ql,qr,v);
if (mid<qr) add(rs,ql,qr,v);
} int Find(int x) {while (fa[x]!=x) x=fa[x];return x;}
vector<pair<int*,int> > tag[30];
void build(int o, int l, int r, int d) {
tag[d].clear();
for (auto &t:tr[o]) {
int z = 1, x = t.x, y = t.y;
while (fa[x]!=x) z^=dis[x],x=fa[x];
while (fa[y]!=y) z^=dis[y],y=fa[y];
if (x==y) {
if (z&1) {
REP(i,l,r) puts("NO");
for (auto &t:tag[d]) *t.x=t.y;
return;
}
}
if (sz[x]<sz[y]) swap(x,y);
tag[d].pb({&sz[x],sz[x]});
tag[d].pb({&fa[y],fa[y]});
tag[d].pb({&dis[y],dis[y]});
sz[x] += sz[y];
fa[y] = x, dis[y] = z;
}
if (l==r) puts("YES");
else build(ls,d+1),build(rs,d+1);
for (auto &t:tag[d]) *t.x = t.y;
} int main() {
scanf("%d%d", &n, &q);
REP(i,1,q) {
int u ,v;
scanf("%d%d", &u, &v);
g[pii(u,v)].pb(i);
}
for (auto &t:g) {
for (int i=0; i<t.y.size(); ++i) {
if (i+1==t.y.size()) add(1,1,q,t.y[i],q,t.x);
else {
add(1,1,q,t.y[i],t.y[i+1]-1,t.x);
++i;
}
}
}
REP(i,1,n) fa[i] = i, sz[i] = 1;
build(1,1,q,0);
}

最新文章

  1. 在C#中如何使用资源的方法
  2. C. Tourist's Notes
  3. 【HDOJ】3901 Wildcard
  4. centos6.4上安装phpmyfaq
  5. Linux环境高级编程--介绍
  6. jquery刷新iframe页面的方法
  7. Python3.4使用MySql
  8. Android中Dialog对话框
  9. 《火球——UML大战需求分析》(0.1)——开篇废话
  10. 数据意识崛起,从企业应用看BI软件的未来发展
  11. IntelliJ IDEA下的使用git
  12. Oracle分析函数——函数列表
  13. Flask入门第三天
  14. Python脱产8期 Day11 2019/4/25
  15. C#_02.14_基础五_.NET类
  16. MAC OS X下配置PHP开发、调试环境
  17. Arbiter
  18. CF1088F Ehab and a weird weight formula 贪心 倍增
  19. DGbroker故障切换示例
  20. Spring IOC容器的初始化流程

热门文章

  1. JQuery事件绑定bind、live、on、trigger
  2. DTServiceHubClient failed to bless service hub for simulator iPhone X (5C15AE72-12E2-475D-9C2B-EF...
  3. ActionBar 自定义布局定义
  4. 关于[StructLayout(LayoutKind.Sequential, CharSet=CharSet.Ansi)] 的解释
  5. Java中使用Socket连接判断Inputstream结束,java tcp socket服务端,python tcp socket客户端
  6. DataGrip 2019.1 连接mysql 8.0.16
  7. DateUtil 提供一些常用的时间想法的方法
  8. Qt编写气体安全管理系统5-数据监控
  9. KSQL Syntax Reference
  10. [导航教程] [C#基类库大全]官方产品发布与源码下载---苏飞版