QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#174279 | #6634. Central Subset | cada_dia_mas_insanos# | WA | 54ms | 8160kb | C++17 | 2.2kb | 2023-09-10 06:03:59 | 2023-09-10 06:04:00 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
const int maxn = 2e5 + 10, oo = 1e9;
int n, m;
int dis[maxn], in[maxn];
vector <int> graph[maxn];
void bfs(int root) {
for (int i=0; i <n; i++) dis[i]=oo;
dis[root]=0;
queue <int> q;
q.push(root);
while (!q.empty()) {
int u = q.front(); q.pop();
for(int&v : graph[u]) {
if (dis[v] > dis[u]+1) {
dis[v]=dis[u]+1;
q.push(v);
}
}
}
}
void clean() {
for (int i=0; i < n; i++) {
graph[i].clear();
in[i]=0;
dis[i]=oo;
}
}
int main() {
ios_base::sync_with_stdio(0), cin.tie(0);
#ifdef LOCAL
freopen("input.txt", "r", stdin);
freopen("output.txt", "w", stdout);
#endif // LOCAL
int tt; cin >> tt;
while (tt--) {
cin >> n >> m;
for (int i=0; i<m; i++) {
int u, v; cin >> u >> v;
u--, v--;
graph[u].push_back(v);
graph[v].push_back(u);
}
bfs(0);
int root=0;
for (int i=0; i < n; i++) if (dis[i] > dis[root]) root = i;
bfs(root);
int limit = ceil(sqrt(n));
vector <int> taken;
while (taken.size() < limit) {
int w=-1;
for (int i=0; i<n; i++) {
if (in[i]) continue;
if (w == -1 || dis[i]>dis[w]) w=i;
}
if (w == -1) break;
taken.push_back(w);
in[w]=1;
bfs(w);
}
bool ok=1;
queue <int> q;
for (int i=0; i <n; i++) dis[i]=oo;
for (int& u : taken) q.push(u), dis[u]=0;
while (!q.empty()) {
int u = q.front(); q.pop();
for(int& v : graph[u]) {
if (dis[v] > dis[u]+1) {
dis[v] = dis[u]+1;
q.push(v);
}
}
}
for (int i=0; i<n; i++) ok &= dis[i]<=limit;
if (!ok) cout << -1 << endl;
else {
cout << taken.size() << endl;
for (int& i : taken) cout << i+1 << ' ';
cout << endl;
}
clean();
}
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 2ms
memory: 8156kb
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 3 2 5 3
result:
ok correct (2 test cases)
Test #2:
score: -100
Wrong Answer
time: 54ms
memory: 8160kb
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:
-1 3 6 5 1 4 1 6 7 10 2 1 2 2 1 2 3 1 9 2 2 1 2 4 1 8 9 14 -1 4 1 3 4 5 -1 3 1 8 2 4 1 6 7 10 5 1 16 6 17 2 3 1 3 4 -1 3 6 5 1 2 1 2 3 5 9 1 5 1 3 4 5 6 2 1 4 3 1 8 5 4 1 8 9 14 5 12 18 1 15 7 3 1 3 4 -1 3 6 4 1 -1 2 1 3 3 1 3 4 -1 4 11 9 1 13 4 1 8 9 14 -1 3 1 3 4 3 1 6 2...
result:
wrong answer Integer -1 violates the range [1, 4] (test case 1)