QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#701957#6634. Central SubsetSoestxWA 15ms7848kbC++231.9kb2024-11-02 15:00:282024-11-02 15:00:31

Judging History

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

  • [2024-11-02 15:00:31]
  • 评测
  • 测评结果:WA
  • 用时:15ms
  • 内存:7848kb
  • [2024-11-02 15:00:28]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;
#define int long long
#define pll pair<int,int>
#define fi first
#define se second
typedef long long LL;
typedef unsigned long long ull;
int n,m,k;
const int N=1e6+10,M=5e4,mod=998244353;
int num[N],book[N];
int  res,cnt;

int h[N],e[N<<1],ne[N<<1],idx;

void add(int a,int b)
{
	e[idx]=b,ne[idx]=h[a],h[a]=idx++;
}
vector<int> vt;
int fa[N];
int find_fa(int x)
{
	if(x!=fa[x]) return fa[x]=find_fa(fa[x]);
	return fa[x];
}

bool uni(int a,int b)
{
	a=find_fa(a),b=find_fa(b);
	if(a==b) return 0;
	fa[a]=b;
	return 1;
}

int dfs(int id,int f)
{
	int dis=0;
	for(int i=h[id];i!=-1;i=ne[i])
	{
		int j=e[i];
		if(j==f) continue;
		int tmp=dfs(j,id)+1;
		if(tmp>dis) dis=tmp;
	}
	if(dis>=k)
	{
		vt.push_back(id);
		dis=0;
	}
	return dis;
}

int DFS(int id)
{
	DFS(2-id);
	return DFS(2-id)+1;
}

void solve() {

	cin>>n>>m;
	k=ceil(sqrt(1.0*n));
	vt.clear();
	idx=0;
	for(int i=1;i<=n;i++) h[i]=-1,fa[i]=i;
	int cnt=0;
	while(m--)
	{
		int a,b;
		cin>>a>>b;
		if(uni(a,b))
		{
			cnt++;
			 add(a,b),add(b,a);
		}
	}
	int ttt,ddd;
	if(cnt!=n-1)
	{
		ttt=DFS(1);
	}
	ttt=ttt*2+1;
	if(dfs(1,-1)>=k)
	vt.push_back(1);
	
	if(!vt.size()) vt.push_back(1);
	sort(vt.begin(),vt.end());
	
	if(vt.size()>k){
		ddd=DFS(1);
//		cout<<"-1\n";
//		return;
	}
	ddd=ddd*2+1;
	
	cout<<vt.size()<<endl;
	cout<<vt[0];
	int la=vt[0];
	for(int i=1;i<vt.size();i++) 
	{
		if(vt[i]==la) continue;
		la=vt[i];
		cout<<" "<<vt[i];
	}
	cout<<endl;
}


signed main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    cout.tie(nullptr);
    int T=1;
    cin>>T;
    while(T--)
    {
        solve();
    }
    return 0;
}
/*
 2
 4 3
 1 2
 2 3
 3 4
 6 7
 1 2
 2 3
 3 1
 1 4
 4 5
 5 6
 6 4
 
 1
 6 6
 1 2
 2 3
 3 4
 4 5
 5 6
 6 1
*/

详细

Test #1:

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

input:

2
4 3
1 2
2 3
3 4
6 7
1 2
2 3
3 1
1 4
4 5
5 6
6 4

output:

1
2
1
1

result:

ok correct (2 test cases)

Test #2:

score: -100
Wrong Answer
time: 15ms
memory: 7848kb

input:

10000
15 14
13 12
5 4
9 8
11 12
15 14
10 9
14 13
2 3
2 1
6 5
10 11
3 4
7 6
8 7
6 5
2 1
2 4
4 6
2 3
3 5
10 9
8 3
9 4
5 6
5 10
3 2
5 4
2 7
1 2
4 3
2 1
2 1
2 1
2 1
9 8
9 8
5 4
1 2
6 5
3 4
3 2
7 8
7 6
2 1
1 2
14 13
3 10
5 6
2 9
11 4
2 3
2 1
8 7
13 6
5 4
5 12
6 7
4 3
7 14
16 15
2 3
2 1
6 10
6 9
6 4
9 11
...

output:

3
3 7 11
1
1
1
2
1
1
1
1
2
3 6
1
1
1
4
2
3 10
1
1
3
5 10 15
1
3
1
2
1
5
1
1
3
3 7 11
1
1
1
1
1
2
1
1
1
2
1
3
1
4
2
1 5
1
1
3
3 7 11
1
1
2
1 5
1
1
1
1
4
1 6 11 16
1
2
1
4
2
4 7
1
1
1
3
1
2
1
3
3
1 6 7
1
1
2
4 8
1
1
1
3
1
2
1
1
2
2 6
1
3
1
3
2
1 5
1
1
3
3 8 13
1
1
1
3
1
4
1
1
3
4 8 12
1
2
1
2
1
1
1
1
...

result:

wrong answer Condition failed: "getMaxBfsDist(n, subset) <= csqrtn" (test case 1107)