#include<bits/stdc++.h>
#define endl '\n'
using namespace std;
void speed()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
}
struct cell
{
int a,b,tim;
};
int n,m,q,a[200005],b[200005],l,r,lead[200005],sw[200005],sz[200005],lamp,otg[200005],br;
stack<cell>s;
void prec()
{
for(int i=1;i<=n;i++)
{
lead[i]=i;
sz[i]=1;
sw[i]=0;
}
}
int get_lead(int beg)
{
if(lead[beg]==beg)return beg;
return get_lead(lead[beg]);
}
int get_br(int beg,int br)
{
if(lead[beg]==beg)return br;
return get_br(lead[beg],br+sw[beg]);
}
void add(int a,int b)
{
br++;
int la=get_lead(a);
int lb=get_lead(b);
if(la==lb)
{
if(get_br(a,0)%2==get_br(b,0)%2)lamp=br;
return;
}
if(sz[la]<sz[lb])
{
swap(la,lb);
swap(a,b);
}
lead[lb]=la;
sz[la]+=sz[lb];
if(get_br(a,0)%2==get_br(b,0)%2)sw[lb]++;
cell h;
h.a=la;
h.b=lb;
h.tim=br;
s.push(h);
}
void rem(int num)
{
for(int i=1;i<=num;i++)
{
if(s.top().tim==br)
{
int a=s.top().a;
int b=s.top().b;
s.pop();
sz[a]-=sz[b];
lead[b]=b;
}
br--;
if(br<lamp)lamp=0;
}
}
void rec(int l1,int l2,int r1,int r2)
{
if(l1>l2)return;
int mid=(l1+l2)/2;
int nbr=br;
for(int i=l1;i<mid;i++)
{
add(a[i],b[i]);
}
//cout<<br<<endl;
int i=r2;
int obr=br;
while(!lamp&&i>max(mid,r1))
{
i--;
add(a[i],b[i]);
}
int ubr=br;
if(i<max(mid,r1))i=-1;
otg[mid]=i;
//cout<<l1<<" "<<l2<<" "<<r1<<" "<<r2<<" "<<otg[mid]<<endl;
//cout<<nbr<<" "<<obr<<" "<<br<<" "<<mid<<endl;
rem(ubr-obr);
add(a[mid],b[mid]);
rec(mid+1,l2,otg[mid],r2);
rem(1);
//cout<<l1<<" "<<l2<<" "<<br<<" "<<nbr<<" "<<obr<<" "<<ubr<<" "<<otg[mid]<<endl;
rem(obr-nbr);
for(int i=r2-(ubr-obr);i<r2;i++)
{
add(a[i],b[i]);
}
rec(l1,mid-1,r1,otg[mid]);
rem(ubr-obr);
}
void read()
{
cin>>n>>m>>q;
prec();
for(int i=1;i<=m;i++)
{
cin>>a[i]>>b[i];
}
rec(1,m,1,m+1);
for(int i=1;i<=q;i++)
{
cin>>l>>r;
if(otg[l]>r)cout<<"YES"<<endl;
else cout<<"NO"<<endl;
}
}
int main()
{
speed();
read();
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
4432 KB |
Output is correct |
2 |
Correct |
1 ms |
4432 KB |
Output is correct |
3 |
Correct |
1 ms |
4432 KB |
Output is correct |
4 |
Incorrect |
1 ms |
4432 KB |
Output isn't correct |
5 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
4432 KB |
Output is correct |
2 |
Correct |
1 ms |
4432 KB |
Output is correct |
3 |
Correct |
1 ms |
4432 KB |
Output is correct |
4 |
Incorrect |
1 ms |
4432 KB |
Output isn't correct |
5 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
4432 KB |
Output is correct |
2 |
Correct |
1 ms |
4432 KB |
Output is correct |
3 |
Correct |
101 ms |
9588 KB |
Output is correct |
4 |
Correct |
167 ms |
11052 KB |
Output is correct |
5 |
Correct |
86 ms |
11832 KB |
Output is correct |
6 |
Correct |
109 ms |
10912 KB |
Output is correct |
7 |
Correct |
113 ms |
10892 KB |
Output is correct |
8 |
Correct |
122 ms |
9904 KB |
Output is correct |
9 |
Correct |
134 ms |
10272 KB |
Output is correct |
10 |
Correct |
165 ms |
11352 KB |
Output is correct |
11 |
Correct |
132 ms |
10632 KB |
Output is correct |
12 |
Correct |
146 ms |
11584 KB |
Output is correct |
13 |
Correct |
123 ms |
9816 KB |
Output is correct |
14 |
Correct |
121 ms |
10416 KB |
Output is correct |
15 |
Correct |
157 ms |
10740 KB |
Output is correct |
16 |
Correct |
179 ms |
11744 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
4432 KB |
Output is correct |
2 |
Correct |
1 ms |
4432 KB |
Output is correct |
3 |
Correct |
1 ms |
4432 KB |
Output is correct |
4 |
Incorrect |
1 ms |
4432 KB |
Output isn't correct |
5 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
4432 KB |
Output is correct |
2 |
Correct |
1 ms |
4432 KB |
Output is correct |
3 |
Correct |
1 ms |
4432 KB |
Output is correct |
4 |
Incorrect |
1 ms |
4432 KB |
Output isn't correct |
5 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
4432 KB |
Output is correct |
2 |
Correct |
1 ms |
4432 KB |
Output is correct |
3 |
Correct |
1 ms |
4432 KB |
Output is correct |
4 |
Incorrect |
1 ms |
4432 KB |
Output isn't correct |
5 |
Halted |
0 ms |
0 KB |
- |