QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#96162#6307. Chase Game 2xuzhihaodedie#WA 35ms6336kbC++201.6kb2023-04-13 14:54:072023-04-13 14:54:09

Judging History

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

  • [2023-08-10 23:21:45]
  • System Update: QOJ starts to keep a history of the judgings of all the submissions.
  • [2023-04-13 14:54:09]
  • 评测
  • 测评结果:WA
  • 用时:35ms
  • 内存:6336kb
  • [2023-04-13 14:54:07]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;
#define int long long
#define x first
#define y second
#define PII pair<int,int>
const int mod=998244353;
const int N=1e5+100;
vector<int>g[N];
int d[N];
multiset<int>st;
priority_queue<int> q;
void dfs(int u,int fa)
{
	if(d[u]==1)	return;
	int t=0;
	for(int j : g[u])
	{
		if(j==fa)	continue;
		if(d[j]==1)	t++;
		dfs(j,u);
	}
	q.push(t);
	//st.insert(t);
}
void solve(){
	int n;
	scanf("%lld",&n);
	for(int i=1;i<=n;i++)	g[i].clear(),d[i]=0;
	st.clear();
	for(int i=1;i<n;i++)
	{
		int u,v;
		scanf("%lld%lld",&u,&v);
		g[u].push_back(v),g[v].push_back(u);
		d[u]++,d[v]++;
	}
	int res=0,ans=0;
	for(int i=1;i<=n;i++)
		if(d[i]==1)	res++;
	if(res>=n-1)
	{
		puts("-1");
		return;
	}
	for(int i=1;i<=n;i++)
		if(d[i]>1)
		{
			dfs(i,-1);
			break;
		}
	while(q.size()>1) {
		int x=q.top();
		q.pop();
		int y=q.top();
		q.pop();
		ans+=y;
		x-=y;
		q.push(x);
	}
	if(q.size()==1) {
		ans+=(int)(q.top());
	}
	cout<<ans<<endl;
//	while(st.size()>1)
//	{
//		auto it = st.end();
//		it--;
//		int x = *it;
//		it--;
//		int y = *it;
//		//cout<<x<<" "<<y<<" "<<"---------"<<endl;
//		st.erase(st.find(x));
//		st.erase(st.find(y));
//		ans+=y;
//		x-=y;
//		if(x)	st.insert(x);
//	}
//	if(st.size())	ans+=*st.begin();
//	printf("%lld\n",ans);
}
signed main() {
	int T=1;
//	freopen("C:\\Users\\86153\\Desktop\\data.in.txt","r",stdin); //´ÓÎļþÖлñÈ¡ÊäÈëÁ÷
//	freopen("C:\\Users\\86153\\Desktop\\data1.out.txt","w",stdout); //°ÑÊä³öתµ½ÎļþÖÐ
	//init();
	cin>>T;
	while(T--) {
		solve();
	}
	//return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 3ms
memory: 5912kb

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: -100
Wrong Answer
time: 35ms
memory: 6336kb

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
2
2
2
2
1
2
-1
2
2
2
2
2
2
2
2
-1
2
2
2
1
-1
1
1
2
2
2
-1
2
2
1
1
1
-1
1
1
2
2
2
2
2
2
-1
2
2
1
1
2
2
2
1
1
2
-1
-1
-1
2
2
2
1
1
1
2
2
2
-1
2
2
-1
1
1
-1
2
-1
-1
2
2
2
2
1
1
1
1
1
1
1
1
1
2
-1
2
2
2
-1
2
2
2
2
-1
2
-1
1
-1
-1
2
-1
2
1
2
2
1
1
1
1
2
2
2
2
2
-1
2
1
2
2
2
2
2
2
2
2
2
-1...

result:

wrong answer 8th numbers differ - expected: '1', found: '2'