QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#135038 | #6634. Central Subset | Team_name# | WA | 3ms | 8544kb | C++20 | 1.0kb | 2023-08-05 10:48:25 | 2023-08-05 10:49:05 |
Judging History
answer
#include <bits/stdc++.h>
#define _debugVar(x) { cerr << #x << " = " << x << endl; }
using namespace std;
using LL = long long;
const int N = 2e5+5;
int n, m, k;
vector<int> e[N];
int par[N];
int Find(int x) { return (par[x] == x) ? x : par[x] = Find(par[x]); }
int dep[N];
void dfs(int x, int fa)
{
dep[x] = dep[fa]+1;
for(int y : e[x]) {
if(y == fa) continue;
dfs(y, x);
}
}
int main()
{
// freopen("1.in", "r", stdin);
ios::sync_with_stdio(false);
cin.tie(nullptr);
int T; cin >> T;
while(T--) {
cin >> n >> m;
for(int i = 1; i <= n; i++) {
e[i].clear();
par[i] = i;
}
for(int i = 1; i <= m; i++) {
int x, y;
cin >> x >> y;
if(Find(x) == Find(y)) continue;
par[Find(x)] = Find(y);
e[x].push_back(y); e[y].push_back(x);
}
dfs(1, 0);
k = sqrt(n);
if(k*k < n) k++;
vector<int> ans;
for(int i = 1; i <= n; i++)
if(dep[i]%(k+1) == 1) ans.push_back(i);
cout << ans.size() << endl;
for(int x : ans) printf("%d ", x);
puts("");
}
return 0;
}
详细
Test #1:
score: 0
Wrong Answer
time: 3ms
memory: 8544kb
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 1 4 1
result:
wrong answer Condition failed: "subset.size() == sz" (test case 1)