QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#219434#6634. Central Subsetsiddharthjoshi026WA 26ms8468kbC++20796b2023-10-19 14:38:162023-10-19 14:38:16

Judging History

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

  • [2023-10-19 14:38:16]
  • 评测
  • 测评结果:WA
  • 用时:26ms
  • 内存:8468kb
  • [2023-10-19 14:38:16]
  • 提交

answer

#include <bits/stdc++.h> 
using namespace std;
#define f first
#define s second
int n,m;
vector<int> adj[200005];
vector<bool> visited(200005,0);
vector<int> ans;
void dfs(int i){
	ans.push_back(i);
	visited[i]=1;
	for(auto x: adj[i]){
		if(!visited[x]){
			dfs(x);
		}
	}
	return ;
}
int main(){
	int zz;
	cin>>zz;
	while(zz--){
		cin>>n>>m;
		for(int i=0;i<m;i++){
			int x,y;
			cin>>x>>y;
			x--;y--;
			adj[x].push_back(y);
			adj[y].push_back(x);
		}
		dfs(0);
		int jmp;
		for(int i=0;i<n;i++){
			if(i*i>=n)
				{jmp=i;break;}
		}
		//cout<<jmp;
		cout<<n/jmp<<'\n';
		for(int i=0;i<ans.size();i+=jmp){
			cout<<1+ans[i]<<' ';
		}
		cout<<'\n';
		ans.clear();
		for(int i=0;i<n;i++){
			adj[i].clear();
			visited[i]=0;
		}
	}
	return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 2ms
memory: 8468kb

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 3 
2
1 4 

result:

ok correct (2 test cases)

Test #2:

score: -100
Wrong Answer
time: 26ms
memory: 8172kb

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
1 5 9 13 
2
1 6 
2
1 4 10 
0
1 
0
1 
3
1 4 7 
0
1 
3
1 10 6 14 
4
1 6 14 11 
4
1 4 8 5 
4
1 6 11 16 
2
1 4 7 
2
1 4 9 
3
1 10 14 4 
1
1 5 
3
1 5 9 13 
2
1 7 6 
0
1 
3
1 5 6 
3
1 4 12 8 
2
1 3 
2
1 4 7 
3
1 4 7 12 
3
1 12 8 18 
2
1 6 
3
1 5 9 13 
2
1 4 
4
1 11 6 16 
1
1 3 
2
1 3 5 
4
1 6 11 16 21 
...

result:

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