QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#936071#10226. Tree Flip玩原神的都进队了 (Junlin Ye, Ruichen Dai, Chenghan Li)#AC ✓350ms21872kbC++143.0kb2025-03-15 17:38:162025-03-15 17:38:17

Judging History

This is the latest submission verdict.

  • [2025-03-15 17:38:17]
  • Judged
  • Verdict: AC
  • Time: 350ms
  • Memory: 21872kb
  • [2025-03-15 17:38:16]
  • Submitted

answer

#include<bits/stdc++.h>
using namespace std;
#define ll long long
#define MP make_pair
mt19937 rnd(time(0));
const int MAXN=1e5+5;
int n,m,rt,a[MAXN],b[MAXN],ff[MAXN],in[MAXN],top[MAXN],out[MAXN],tot;
vector<int> edg[MAXN];
int siz[MAXN],mson[MAXN];
struct segt{
int a[MAXN*4][2],laz[MAXN*4];
void flip(int id){
	swap(a[id][0],a[id][1]);laz[id]^=1;
}
void pushdown(int id){
	if(laz[id]) flip(id<<1),flip(id<<1|1),laz[id]=0;
}
void pushup(int id){
	a[id][0]=a[id<<1][0]+a[id<<1|1][0];
	a[id][1]=a[id<<1][1]+a[id<<1|1][1];
}
void build(int id=1,int l=1,int r=n){
	a[id][0]=a[id][1]=laz[id]=0;
	if(l==r) return;
	int mid=(l+r)>>1;
	build(id<<1,l,mid);build(id<<1|1,mid+1,r);
}
void upd(int x,int o,int v,int id=1,int l=1,int r=n){
	if(l==r){a[id][o]=v;return;}
	pushdown(id);
	int mid=(l+r)>>1;
	if(x<=mid) upd(x,o,v,id<<1,l,mid);
	else upd(x,o,v,id<<1|1,mid+1,r);
	pushup(id);
}
void flp(int L,int R,int id=1,int l=1,int r=n){
	if(L<=l&&r<=R) {flip(id);return;}
	pushdown(id);
	int mid=(l+r)>>1;
	if(L<=mid) flp(L,R,id<<1,l,mid);
	if(mid<R) flp(L,R,id<<1|1,mid+1,r);
	pushup(id);
}
int qry(int L,int R,int o,int id=1,int l=1,int r=n){
	if(L>R) return 0;
	if(L<=l&&r<=R) return a[id][o];
	pushdown(id);
	int mid=(l+r)>>1;
	if(R<=mid) return qry(L,R,o,id<<1,l,mid);
	if(mid<L) return qry(L,R,o,id<<1|1,mid+1,r);
	return qry(L,R,o,id<<1,l,mid)+qry(L,R,o,id<<1|1,mid+1,r);
}
}T,Ts;
// T for all a
// Ts for sum
void dfs(int u,int fa){
	siz[u]=1;mson[u]=0;ff[u]=fa;
	for(int v:edg[u]) if(v!=fa){
		b[v]=a[v]^b[u];dfs(v,u);
		siz[u]+=siz[v];
		if(siz[v]>siz[mson[u]]) mson[u]=v;
	}
}
void dfs1(int u,int fa){
	in[u]=++tot;
	if(mson[u]){
		top[mson[u]]=top[u];
		dfs1(mson[u],u);
	}
	for(int v:edg[u]) if(v!=fa&&v!=mson[u]) top[v]=v,dfs1(v,u);
	out[u]=tot;
}
void upd(int i){
	for(int o:{0,1}){
		int w=Ts.qry(in[i],in[i],a[i]^o)+
		(mson[i]&&out[mson[i]]<out[i]
			?Ts.qry(out[mson[i]]+1,out[i],a[i]^o):0);
		T.upd(in[i],o,w);
	}
}
int cur(int x){return Ts.qry(in[x],in[x],1);}
void solve(){
	cin>>n>>m;tot=0;
	for(int i=1;i<=n;i++) cin>>a[i],edg[i].clear();
	for(int i=1;i<n;i++){
		int u,v;cin>>u>>v;
		edg[u].push_back(v);
		edg[v].push_back(u);
	}
	b[1]=a[1];dfs(1,0);top[1]=rt=1;dfs1(1,0);
	T.build();Ts.build();
	for(int i=1;i<=n;i++) Ts.upd(in[i],b[i],1);
	for(int i=1;i<=n;i++) upd(i);
	while(m--){
		int o,x;cin>>o>>x;
		if(o==1){
			Ts.flp(in[x],out[x]);T.flp(in[x],out[x]);
			a[x]^=1;
			upd(x);x=top[x];
			while(x>1) x=ff[x],upd(x),x=top[x];
		}else{
			rt=x;
		}
		int w=cur(rt)^1;
		int ans=0;
		if(mson[rt]) ans+=Ts.qry(in[mson[rt]],out[mson[rt]],w^a[rt]);
		int u=rt;
		while(u){
			ans+=T.qry(in[top[u]],in[u],w);
			u=top[u];
			if(u==1) break;
			ans+=Ts.qry(in[mson[ff[u]]],out[mson[ff[u]]],w^a[ff[u]])
				-Ts.qry(in[u],out[u],w^a[ff[u]]);
			u=ff[u];
		}
		cout<<ans<<'\n';
	}
}
int main(){
	// freopen("Otomachi_Una.in","r",stdin);
	// freopen("Otomachi_Una.out","w",stdout);
	ios::sync_with_stdio(false);cin.tie(0);cout.tie(0);
	int T;cin>>T;
	while(T--) solve();
	return 0;
}

这程序好像有点Bug,我给组数据试试?

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 0ms
memory: 12028kb

input:

1
3 3
0 0 1
1 2
3 1
1 1
2 2
1 1

output:

2
1
1

result:

ok 3 lines

Test #2:

score: 0
Accepted
time: 350ms
memory: 21872kb

input:

1
100000 100000
0 0 1 1 0 0 0 1 1 1 0 0 0 1 1 1 1 1 0 1 1 1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1 1 1 1 1 1 0 0 0 0 0 0 1 1 0 0 1 1 1 0 0 0 1 1 1 1 0 0 0 0 0 0 1 1 1 1 0 1 1 0 0 0 0 1 0 0 0 0 1 0 1 1 1 1 0 0 0 0 1 1 1 1 0 1 0 1 1 0 1 0 1 1 0 0 1 1 1 1 1 1 1 1 1 0 1 0 0 1 0 0 1 0 1 0 0 1 1 1 0 1 1 1 1 0 1 1 ...

output:

49874
50073
49944
49944
49917
49916
49984
49947
49945
49870
50089
50088
50024
50025
49980
49862
49984
49982
49983
49990
49949
49951
49950
50195
50196
50196
49955
50072
50071
49993
50021
50134
49985
49917
49886
49885
50134
49818
49819
49952
49954
49955
49986
50046
50018
50021
50020
50017
50130
50132
...

result:

ok 100000 lines

Test #3:

score: 0
Accepted
time: 211ms
memory: 16792kb

input:

10
9141 9858
1 1 1 0 0 1 1 1 0 0 1 1 0 1 1 1 0 1 0 0 1 0 0 0 1 1 0 1 1 0 0 1 1 0 0 1 0 1 1 1 0 1 1 0 1 1 1 0 0 0 1 1 1 0 1 0 1 1 1 0 0 1 1 1 0 1 1 1 1 0 1 0 1 0 0 0 1 0 1 0 0 1 1 0 0 0 0 1 0 1 0 1 1 0 0 0 0 1 1 1 1 1 0 1 0 0 0 0 1 1 1 0 1 0 1 1 1 0 1 1 1 1 1 1 1 0 1 0 0 1 0 0 1 0 1 0 0 1 0 1 1 0 1 1...

output:

4598
4606
4568
4553
4529
4529
4601
4600
4534
4546
4548
4621
4597
4515
4586
4586
4587
4536
4552
4553
4555
4556
4618
4580
4555
4561
4549
4547
4547
4517
4594
4593
4556
4556
4554
4554
4553
4557
4603
4603
4602
4602
4600
4516
4523
4593
4592
4589
4590
4591
4584
4543
4542
4532
4537
4562
4611
4558
4556
4591
...

result:

ok 95405 lines

Test #4:

score: 0
Accepted
time: 156ms
memory: 13528kb

input:

10
9997 9996
1 1 1 0 0 0 1 1 0 1 0 0 0 0 0 0 0 1 0 0 0 1 1 0 1 0 0 1 0 1 0 0 0 1 0 1 0 0 0 1 0 1 1 0 0 0 0 1 1 1 0 0 1 1 1 1 0 0 0 1 1 1 0 1 0 0 0 1 1 1 0 0 1 1 0 1 0 1 1 0 0 0 1 1 1 1 0 0 0 1 1 0 0 1 0 0 1 0 1 1 0 0 0 1 0 0 0 1 0 1 1 0 0 0 1 1 0 0 1 1 0 0 1 1 0 1 1 1 0 1 0 1 1 0 0 0 0 0 1 1 1 1 1 1...

output:

4997
5001
4990
5018
5024
5011
5042
5066
4955
4971
4971
4937
4947
4983
5050
4971
5038
5038
4960
5032
4966
4924
4999
4957
5041
5041
4957
4973
5000
5025
4998
5015
5016
5020
5006
5020
5015
5036
5008
5008
4975
4996
4957
4986
5051
4998
5004
4990
4990
4965
4995
4963
4987
5009
4989
5007
5007
4985
4998
5007
...

result:

ok 99942 lines

Test #5:

score: 0
Accepted
time: 31ms
memory: 16104kb

input:

10000
10 10
0 1 0 1 1 0 0 0 0 1
3 5
5 10
5 4
2 10
2 7
9 4
2 1
3 8
6 7
2 5
1 7
1 5
2 1
1 7
1 9
2 1
2 7
1 8
2 4
4 10
1 1 0 1
1 4
1 2
2 3
1 4
1 4
2 4
1 3
2 3
2 3
1 2
2 2
2 1
2 4
10 10
0 1 0 1 1 1 0 0 1 0
10 7
7 3
10 5
10 1
1 8
5 6
10 9
2 9
4 3
2 1
2 6
1 1
2 7
1 7
1 5
1 3
1 5
2 7
1 3
4 10
0 1 1 1
1 2
3 ...

output:

7
5
5
3
5
4
4
3
4
7
2
1
3
2
2
2
3
2
2
2
3
3
5
5
5
5
5
5
5
5
2
2
2
2
2
1
3
2
1
1
1
2
2
2
2
2
1
1
1
2
4
5
4
3
5
5
3
4
5
4
4
5
2
3
2
4
5
4
2
3
2
2
2
2
2
2
2
3
3
3
5
2
2
7
2
2
3
2
7
6
4
3
1
1
2
2
3
4
5
4
6
6
4
5
6
4
5
6
6
7
5
2
4
2
4
1
3
2
4
4
3
7
2
6
6
7
6
1
1
1
0
0
1
1
2
1
2
1
2
2
4
2
1
1
2
2
4
3
3
2
...

result:

ok 100000 lines

Extra Test:

score: 0
Extra Test Passed