QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#190091#6634. Central SubsetasxziillRE 0ms3632kbC++23996b2023-09-28 11:03:532023-09-28 11:03:54

Judging History

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

  • [2023-09-28 11:03:54]
  • 评测
  • 测评结果:RE
  • 用时:0ms
  • 内存:3632kb
  • [2023-09-28 11:03:53]
  • 提交

answer

#include <bits/stdc++.h>

const int N=1e5+5;
const int M=1e5+5;
const int inf=0x3fffffff;
typedef long long ll;
typedef unsigned long long ull;
typedef __int128 lll;

void solve(){
	int n, m;
	std::cin>>n>>m;
	std::vector<std::vector<int>> g(n);
	while (m--){
		int u, v;
		std::cin>>u>>v;
		u--, v--;
		g[u].push_back(v);
		g[v].push_back(u);
	}
	std::vector<int> ans;
	ll lim=1;
	while (lim*lim<n){
		lim++;
	}
	std::vector<int> vis(n);
	auto dfs=[&](auto self, int u, int dis)->void{
		if (dis==lim+1){
			ans.push_back(u);
			dis=0;
		}
		vis[u]=1;
		for (int v:g[u]){
			if (vis[v]) continue;
			self(self, v, dis+1);
		}
	};
	dfs(dfs, 0, lim+1);
	int cnt=ans.size();
	assert(cnt<=lim);
	std::cout<<cnt<<"\n";
	for (int i=0; i<cnt; i++){
		std::cout<<(ans[i]+1)<<" \n"[i==cnt-1];
	}
}

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

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 0ms
memory: 3632kb

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:

2
1 4
1
1

result:

ok correct (2 test cases)

Test #2:

score: -100
Runtime Error

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:


result: