QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#302382#6307. Chase Game 2FengfengWA 9ms6548kbC++201.3kb2024-01-10 20:11:272024-01-10 20:11:27

Judging History

你现在查看的是最新测评结果

  • [2024-01-10 20:11:27]
  • 评测
  • 测评结果:WA
  • 用时:9ms
  • 内存:6548kb
  • [2024-01-10 20:11:27]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;
long long ksm(long long a,long long b,long long mod){
	long long res=1;
	a%=mod;
	while(b){
		if(b&1) res=res*a%mod;
		a=a*a%mod;
		b>>=1;
	}
	return res;
}

const int N=1e5+10;
int n;
int d[N],mx[N];
vector<int>tr[N];

void dfs(int old,int u){
	for(int v:tr[u]){
		if(v==old) continue;
		d[v]=d[u]+1;
		dfs(u,v);
		mx[u]=max(mx[u],mx[v]);
	}
	mx[u]=max(mx[u],d[u]);
}

bool f=false;
int ans=0;

void dfs1(int old,int u,int up){
	int si=tr[u].size();
	if(si==1){
		ans++;
		if(max(up+1,mx[u]-d[u]+1)<4){
			f=true;
		}
	}
	int x=0,x1=0;
	for(int v:tr[u]){
		if(v==old) continue;
		if(mx[v]>=mx[x]){
			x1=x;x=v;
		}
		else if(mx[v]>mx[x1]){
			x1=v;
		}
	}	

	for(int v:tr[u]){
		if(v==old) continue;
		if(v==x){
			dfs1(u,v,max(up+1,mx[x1]-d[u]+1));
		}
		else{
			dfs1(u,v,max(up+1,mx[x]-d[u]+1));
		}
	}
}

void solve(){
	cin>>n;
	for(int i=1;i<=n;i++){
		tr[i].clear();
		d[i]=mx[i]=0;
	}
	for(int i=1;i<n;i++){
		int x,y;
		cin>>x>>y;
		tr[x].push_back(y);
		tr[y].push_back(x);
	}
	dfs(0,1);
	f=false;
	ans=0;
	dfs1(0,1,0);
	if(f){
		cout<<-1<<'\n';
		return;
	}

	cout<<ans-1<<'\n';
}

int main(){
	ios::sync_with_stdio(false);cin.tie(0);cout.tie(0);
	int t=1;
	cin>>t;
	while(t--){
		solve();
	}
	return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 1ms
memory: 6284kb

input:

4
2
1 2
4
1 2
2 3
3 4
4
1 2
2 3
2 4
5
1 2
2 3
3 4
3 5

output:

-1
1
-1
2

result:

ok 4 number(s): "-1 1 -1 2"

Test #2:

score: 0
Accepted
time: 5ms
memory: 6548kb

input:

10000
4
1 2
1 3
3 4
4
1 2
1 3
1 4
4
1 2
2 3
1 4
5
1 2
2 3
1 4
4 5
5
1 2
2 3
3 4
4 5
4
1 2
2 3
2 4
5
1 2
1 3
2 4
2 5
4
1 2
2 3
1 4
5
1 2
1 3
2 4
1 5
5
1 2
2 3
3 4
2 5
5
1 2
1 3
2 4
2 5
4
1 2
1 3
3 4
5
1 2
1 3
3 4
1 5
4
1 2
1 3
1 4
5
1 2
1 3
3 4
3 5
5
1 2
2 3
3 4
3 5
4
1 2
1 3
2 4
5
1 2
2 3
2 4
3 5
5
...

output:

1
-1
1
1
1
-1
2
1
2
2
2
1
2
-1
2
2
1
2
2
1
1
1
-1
2
2
2
1
-1
1
1
2
1
1
-1
1
2
1
1
1
-1
1
1
2
2
2
1
1
1
-1
1
2
1
1
2
1
2
1
1
2
-1
-1
-1
2
2
2
1
1
1
2
2
2
-1
1
2
-1
1
1
-1
2
-1
-1
1
2
2
2
1
1
1
1
1
1
1
1
1
2
-1
1
1
2
-1
2
1
1
1
-1
2
-1
1
-1
-1
2
-1
2
1
2
2
1
1
1
1
2
1
1
1
1
-1
2
1
2
1
1
1
1
1
1
1
2
-1...

result:

ok 10000 numbers

Test #3:

score: -100
Wrong Answer
time: 9ms
memory: 6504kb

input:

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

output:

1
4
4
5
3
2
5
3
4
3
4
3
4
3
4
4
4
3
4
3
5
3
4
4
3
3
4
5
4
5
4
4
3
5
4
5
5
4
5
4
3
4
4
4
4
5
2
5
4
4
4
5
4
2
5
2
4
3
3
4
4
6
4
5
4
4
3
3
4
2
3
3
5
4
3
4
5
3
5
4
4
5
3
5
3
3
4
5
5
4
3
4
4
3
4
5
4
4
4
3
4
3
3
5
5
4
4
2
3
5
3
4
6
3
6
4
2
4
4
3
5
3
4
5
4
4
3
2
5
5
4
3
4
4
4
4
5
4
3
5
4
3
3
6
4
5
4
4
3
4
...

result:

wrong answer 2nd numbers differ - expected: '3', found: '4'