QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#190089 | #6634. Central Subset | asxziill | RE | 0ms | 3564kb | C++23 | 992b | 2023-09-28 10:57:26 | 2023-09-28 10:57:26 |
Judging History
answer
#include <bits/stdc++.h>
const int N=1e5+5;
const int M=1e5+5;
const int inf=0x3fffffff;
typedef long long ll;
typedef unsigned long long ull;
typedef __int128 lll;
void solve(){
int n, m;
std::cin>>n>>m;
std::vector<std::vector<int>> g(n);
while (m--){
int u, v;
std::cin>>u>>v;
u--, v--;
g[u].push_back(v);
g[v].push_back(u);
}
std::vector<int> ans;
ll lim=1;
while (lim*lim<n){
lim++;
}
std::vector<int> vis(n);
auto dfs=[&](auto self, int u, int dis)->void{
if (dis==lim){
ans.push_back(u);
dis=0;
}
vis[u]=1;
for (int v:g[u]){
if (vis[v]) continue;
self(self, v, dis+1);
}
};
dfs(dfs, 0, lim);
int cnt=ans.size();
assert(cnt<=lim);
std::cout<<cnt<<"\n";
for (int i=0; i<cnt; i++){
std::cout<<(ans[i]+1)<<" \n"[i==cnt-1];
}
}
int main(){
std::ios::sync_with_stdio(false);
std::cin.tie(nullptr);
int t;
std::cin>>t;
while (t--){
solve();
}
return 0;
}
詳細信息
Test #1:
score: 100
Accepted
time: 0ms
memory: 3564kb
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 3 2 1 6
result:
ok correct (2 test cases)
Test #2:
score: -100
Runtime Error
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 ...