QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#134927 | #6634. Central Subset | ckz# | WA | 13ms | 9440kb | C++20 | 1.3kb | 2023-08-05 10:05:10 | 2023-08-05 10:05:12 |
Judging History
answer
#include<bits/stdc++.h>
#define ll long long
#define all(a) (a).begin(),(a).end()
using namespace std;
const int maxn = 2e5 + 10;
int n, m;
int len;
ll v[maxn];
bool vis[maxn];
vector <ll> g[maxn];
void bfs(ll st)
{
len=ceil(sqrt(n));
for (int i=1; i<=n; i++) v[i]=-1;
queue <ll> q;
q.push(st);
v[st]=0;
while (q.size())
{
ll x=q.front();
q.pop();
if (v[x]>=len) continue;
for (int y:g[x])
{
if (v[y]==-1) {
q.push(y);
v[y]=v[x]+1;
vis[y]=1;
}
else continue;
}
}
}
void solve()
{
cin >> n >> m;
for (int i=1; i<=n; i++) g[i].clear();
for (int i=1; i<=m; i++)
{
int u, v;
cin >> u >> v;
g[u].push_back(v);
g[v].push_back(u);
}
ll q=1;
vector <ll> ans;
while (q<=n)
{
while (vis[q]) q++;
if (q>n) break;
ans.push_back(q);
bfs(q);
q++;
}
cout << ans.size() << "\n";
for (int i=0; i<ans.size(); i++) cout << ans[i] << " ";
cout << "\n";
}
signed main()
{
ios::sync_with_stdio(false);
cin.tie(nullptr);cout.tie(nullptr);
int t = 1;
cin >> t;
while(t--) solve();
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 3ms
memory: 8960kb
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
Wrong Answer
time: 13ms
memory: 9440kb
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 6 11 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 16 1 1 2 1 17 1 1 1 1 2 1 17 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 21 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 21 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...
result:
wrong answer Condition failed: "getMaxBfsDist(n, subset) <= csqrtn" (test case 3)