QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#690404#6307. Chase Game 2IdtwteiWA 5ms6732kbC++141.0kb2024-10-30 22:01:332024-10-30 22:01:34

Judging History

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

  • [2024-10-30 22:01:34]
  • 评测
  • 测评结果:WA
  • 用时:5ms
  • 内存:6732kb
  • [2024-10-30 22:01:33]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;

#define U(x) ((int)x.size())
#define pb push_back
const int N=1e5+100;
#define gc getchar()
#define rd read()
inline int read(){
	int x=0,f=0; char c=gc;
	for(;c<'0'||c>'9';c=gc) f|=(c=='-');
	for(;c>='0'&&c<='9';c=gc) x=(x<<1)+(x<<3)+(c^48);
	return f?-x:x;
}

int n,m=0,tot=0,ans=0,a[N];
vector<int> G[N];
inline int is(int x){ return U(G[x])==1; }
multiset<int> s;

void solve(){
	n=rd,m=tot=0; for(int i=1,x,y;i<n;++i) x=rd,y=rd,G[x].pb(y),G[y].pb(x);
	
	for(int i=1;i<=n;++i) if((!is(i))&&((a[++m]=0)==0)) for(int v:G[i]) a[m]+=is(v);
	for(int i=1;i<=m;++i) tot+=a[i];
	if(a[m]==tot) printf("-1\n");
	else{
		s={}; ans=0; for(int i=1;i<=m;++i) if(a[i]) s.insert(a[i]);
		while(U(s)>=2){
			int u=*s.begin(); s.erase(s.begin());
			int v=*s.rbegin(); s.erase(--s.end());
			ans+=v,u-=v; if(u>0) s.insert(u);
		}
		if(U(s)) ans+=*s.begin();
		printf("%d\n", ans);
	}
	for(int i=1;i<=n;++i) G[i]={};
}

int main(){
	
	int T=rd;
	while(T--) solve();
	
	return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

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: 0ms
memory: 6732kb

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: 5ms
memory: 6320kb

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
3
3
4
2
2
5
2
3
2
4
2
4
3
4
3
3
3
4
3
5
2
4
4
3
3
4
5
4
5
3
4
3
4
4
4
5
4
4
3
2
3
3
4
4
4
2
4
3
4
3
4
3
2
4
2
3
2
3
4
4
5
4
5
3
3
2
2
3
2
2
3
4
3
2
4
4
3
5
3
4
4
3
4
3
3
3
5
5
4
2
3
4
3
3
4
3
4
3
2
3
2
3
5
5
3
4
2
3
4
2
3
6
2
5
3
2
3
3
2
5
2
3
4
4
4
3
2
4
4
4
2
3
3
3
4
4
3
2
5
4
3
2
5
3
4
3
4
2
3
...

result:

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