QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#135213 | #6634. Central Subset | wtn135687# | WA | 2ms | 8532kb | C++14 | 1.3kb | 2023-08-05 12:53:30 | 2023-08-05 12:53:32 |
Judging History
answer
#include<bits/stdc++.h>
#define pll pair<ll, ll>
using namespace std;
typedef long long ll;
#define int ll
const int N = 2e5+10;
const int M = 1e6 + 7;
int n, m, fa[N], mx;
vector<ll> edge[N], ans;
bool vis[N];
int ok=1;
void init(){
// ans.clear();
for (int i = 0; i <= n; i++) edge[i].clear(),vis[i]=0;
ok=1;
ans.clear();
mx = sqrt(n);
if (mx * mx < n)mx++;
}
int dfs(int u){
int dis=0;
vis[u]=1;
for(int v:edge[u]){
if(vis[v])continue;
// vis[v]=1;
dis=max((dfs(v)+1),dis);
}
// cout<<"u->"<<u<<" dis->"<<dis<<endl;
if(dis==mx){
ans.push_back(u);
if(u==1){
ok=0;
}
return -1;
}
return dis;
}
inline void solve(){
cin >> n >> m;
init();
for (int i = 1, u, v; i <= m; i++){
cin >> u >> v;
edge[u].push_back(v);
edge[v].push_back(u);
}
// cout<<"mx->"<<mx<<endl;
// ans.push_back(1);
if(ok){
ans.push_back(1);
}
sort(ans.begin(),ans.end());
cout<<ans.size()<<"\n";for(int i:ans)cout<<i<<" ";cout<<"\n";
}
signed main(){
ios::sync_with_stdio(false),cin.tie(0),cout.tie(0);
int WTN666=1;cin>>WTN666;
while(WTN666--){
solve();
}
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 0
Wrong Answer
time: 2ms
memory: 8532kb
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 1 1 1
result:
wrong answer Condition failed: "getMaxBfsDist(n, subset) <= csqrtn" (test case 1)