# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
257635 | arnold518 | Joker (BOI20_joker) | C++14 | 199 ms | 262148 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
const int MAXN = 4e5;
const int SQ = 200;
struct Query
{
int l, r, k;
bool operator < (const Query &p) { return r>p.r; }
};
int N, M, Q;
pii E[MAXN+10];
Query A[MAXN+10];
vector<Query> B[MAXN+10];
int ans[MAXN+10];
struct UF
{
//int par[MAXN+10], sz[MAXN+10], opp[MAXN+10];
vector<int> par, sz, opp;
bool state;
vector<int> V;
void init()
{
par.resize(2*N+10); sz.resize(2*N+10); opp.resize(2*N+10);
int i, j;
for(i=1; i<=N; i++) par[i]=i, sz[i]=1, opp[i]=N+i;
for(i=1; i<=N; i++) par[i+N]=i+N, sz[i+N]=1, opp[i+N]=i;
V.clear(); state=true;
}
int Find(int x)
{
if(x==par[x]) return x;
return par[x]=Find(par[x]);
}
void Union(int x, int y)
{
//printf("Union %d %d\n", x, y);
x=Find(x); y=Find(y);
int nx=opp[x], ny=opp[y];
if(x==y || !state)
{
if(state) V.push_back(-1);
else V.push_back(-2);
state=false;
return;
}
if(sz[x]<sz[ny]) swap(x, ny);
if(sz[y]<sz[nx]) swap(y, nx);
V.push_back(opp[x]); V.push_back(opp[y]); V.push_back(ny); V.push_back(nx);
par[ny]=x; sz[x]+=sz[ny];
par[nx]=y; sz[y]+=sz[nx];
opp[x]=y; opp[y]=x;
}
void restore()
{
int ny, nx, x, y, oppx, oppy;
//printf("RESTORE\n");
if(V.empty()) while(1);
if(V.back()<0)
{
if(V.back()==-1) state=true;
V.pop_back();
return;
}
nx=V.back(); V.pop_back();
ny=V.back(); V.pop_back();
oppy=V.back(); V.pop_back();
oppx=V.back(); V.pop_back();
x=par[ny]; y=par[nx];
opp[x]=oppx; opp[y]=oppy;
sz[x]-=sz[ny]; sz[y]-=sz[nx];
par[ny]=ny; par[nx]=nx;
}
}uf;
int main()
{
int i, j, k;
scanf("%d%d%d", &N, &M, &Q);
for(i=1; i<=M; i++) scanf("%d%d", &E[i].first, &E[i].second);
for(i=1; i<=Q; i++)
{
scanf("%d%d", &A[i].l, &A[i].r);
A[i].k=i;
B[A[i].l/SQ].push_back(A[i]);
}
uf.init();
for(i=0, j=1; i<=M/SQ; i++)
{
int l=max(SQ*i, 1), r=min(SQ*i+SQ-1, M);
sort(B[i].begin(), B[i].end());
for(; j<l; j++) uf.Union(E[j].first, E[j].second);
int p=M, q;
for(auto it : B[i])
{
for(; p>it.r; p--) uf.Union(E[p].first, E[p].second);
for(q=l; q<it.l; q++) uf.Union(E[q].first, E[q].second);
ans[it.k]=uf.state;
for(q=l; q<it.l; q++) uf.restore();
}
for(p++; p<=M; p++) uf.restore();
}
for(i=1; i<=Q; i++)
{
if(!ans[i]) printf("YES\n");
else printf("NO\n");
}
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |