QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#186297#6421. Degree of Spanning TreeC1924huangjiaxuWA 2ms10376kbC++141.1kb2023-09-23 16:30:352023-09-23 16:30:36

Judging History

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

  • [2023-09-23 16:30:36]
  • 评测
  • 测评结果:WA
  • 用时:2ms
  • 内存:10376kb
  • [2023-09-23 16:30:35]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;
const int N=1e5+5;
int T,n,m,dfn[N],fa[N],low[N],il[N],du[N],gl;
bool dl[N];
vector<int>e[N],g[N];
void tarjan(int x){
	dfn[x]=++dfn[0],low[x]=il[x]=x;
	for(auto v:e[x]){
		if(!dfn[v]){
			++du[x],++du[v];
			g[x].push_back(v),fa[v]=x;
			tarjan(v);
			if(dfn[low[v]]<dfn[low[x]])low[x]=low[v],il[x]=il[v];
		}else if(dfn[v]<dfn[low[x]])il[x]=x,low[x]=v;
	}
	if(du[x]>n/2)gl=x;
}
void solve(){
	scanf("%d%d",&n,&m);
	gl=dfn[0]=0;
	for(int i=1;i<=n;++i)e[i].clear(),g[i].clear(),dfn[i]=low[i]=il[i]=fa[i]=du[i]=dl[i]=0;
	for(int i=1,x,y;i<=m;++i){
		scanf("%d%d",&x,&y);
		e[x].push_back(y),e[y].push_back(x);
	}
	tarjan(1);
	if(gl){
		int ct=0;
		for(auto v:g[gl])if(dfn[low[v]]<dfn[gl])++ct;
		if(du[gl]-ct>n/2)return puts("No"),void();
	}
	puts("Yes");
	for(auto v:g[gl])if(du[gl]>n/2&&dfn[low[v]]<dfn[gl]){
		if(!dl[gl])dl[gl]=true;
		else dl[v]=true;
		printf("%d %d\n",low[v],il[v]);
		--du[gl];
	}
	for(int i=1;i<=n;++i)for(auto v:g[i])if(!dl[v])printf("%d %d\n",i,v);
}
int main(){
	scanf("%d",&T);
	while(T--)solve();
	return 0;
}

詳細信息

Test #1:

score: 0
Wrong Answer
time: 2ms
memory: 10376kb

input:

2
6 9
1 2
1 3
1 4
2 3
2 4
3 4
4 5
4 6
4 6
3 4
1 3
2 3
3 3
1 2

output:

Yes
1 2
2 3
3 4
4 5
4 6
Yes
1 2
3 2

result:

wrong answer case 2, paticipant's deg[2] = 2 is too large