QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#220820 | #6634. Central Subset | real_sigma_team | WA | 12ms | 9792kb | C++20 | 1.5kb | 2023-10-20 21:00:17 | 2023-10-20 21:00:17 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
#define all(x) (x).begin(), (x).end()
#define sz(x) (int)(x).size()
using ll = long long;
const int N = 2e5 + 5;
const int K = 449;
vector<int> gr[N];
int d[N], used[N];
const int inf = 1e9;
int k;
vector<int> ans;
void dfs(int v, int p) {
used[v] = 1;
int mx = 0;
int ch = 0;
for (int u: gr[v]) {
if (used[u] == 0){
dfs(u, v);
ch++;
mx = max(mx, d[u]);
}
}
if (ch == 0) {
d[v] = 0;
}else{
if (mx + 1 >= k) {
ans.push_back(v + 1);
d[v] = -1;
} else {
if(v == 0 && sz(ans) == 0)
ans.push_back(v + 1);
d[v] = mx + 1;
}
}
}
void solve() {
int n, m;
cin >> n >> m;
k = ceil(sqrt(n));
{
ans.clear();
for (int i = 0; i < n; i++)
gr[i].clear(), used[i] = 0, d[i] = 0;
}
for (int i = 0; i < m; i++) {
int u, v;
cin >> u >> v;
u--, v--;
gr[u].push_back(v);
gr[v].push_back(u);
}
dfs(0,-1);
cout << sz(ans) << '\n';
for (int i: ans) {
cout << i << ' ';
}
cout << '\n';
}
int main() {
#ifndef LOCAL
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
#else
freopen("input.txt", "r", stdin);
#endif
int t;
cin >> t;
while (t--)
solve();
return 0;
}
詳細信息
Test #1:
score: 100
Accepted
time: 2ms
memory: 9792kb
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: 12ms
memory: 9140kb
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 11 7 3 1 1 1 2 1 1 1 1 2 6 3 1 1 1 4 2 10 3 1 1 3 15 10 5 1 3 1 2 1 5 1 1 3 11 7 3 1 1 1 1 1 2 1 1 1 2 1 3 1 4 2 5 1 1 1 3 11 7 3 1 1 2 5 1 1 1 1 1 4 16 11 6 1 1 2 1 4 2 7 4 1 1 1 3 1 2 1 3 3 7 6 1 1 1 2 8 4 1 1 1 3 1 2 1 1 2 6 2 1 3 1 3 2 5 1 1 1 ...
result:
wrong answer Condition failed: "getMaxBfsDist(n, subset) <= csqrtn" (test case 1107)