QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#135147 | #6634. Central Subset | 4k2kok# | WA | 28ms | 15752kb | C++20 | 2.8kb | 2023-08-05 12:10:57 | 2023-08-05 12:11:02 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
#define INF 0x3f3f3f3f
#define PI acos(-1)
#define io ios::sync_with_stdio(false); cin.tie(0); cout.tie(0)
#define mem(a,b) memset((a),(b),sizeof(a))
typedef long long ll;
typedef unsigned long long ull;
#define int long long
#define db long double
const double eps = 1e-6;
const int mod = 1e9 + 7;
const int maxn = 2e5 + 10;
int n, m, d[maxn], vis[maxn];
vector<int> dep[maxn];
vector<int> edge[maxn];
void bfs(int u) {
queue<int> que;
que.push(u);
vis[u] = 1;
dep[1].push_back(u);
while(!que.empty()) {
int now = que.front();
que.pop();
for(int i = 0; i < edge[now].size(); i++) {
int v = edge[now][i];
if(vis[v] == 0) {
vis[v] = vis[now] + 1;
dep[vis[v]].push_back(v);
que.push(v);
}
}
}
}
void solve() {
cin >> n >> m;
if(m == 0) {
cout << 1 << '\n';
cout << 1 << '\n';
return;
}
for(int i = 0; i <= n; i++) d[i] = 0, vis[i] = 0, edge[i].clear(), dep[i].clear();
int pos = 0, maxx = 0;
for(int i = 0, u, v; i < m; i++) {
cin >> u >> v;
edge[u].push_back(v);
edge[v].push_back(u);
d[u]++; d[v]++;
if(d[u] > maxx) {
maxx = d[u];
pos = u;
}
if(d[v] > maxx) {
maxx = d[v];
pos = v;
}
}
srand(time(0));
for(int i = 1; i <= 5; i++) {
pos = rand() % n + 1;
for(int i = 0; i <= n; i++) d[i] = 0, vis[i] = 0, dep[i].clear();
bfs(pos);
// cerr << pos << '\n';
// for(int i = 1; i <= n; i++) {
// cerr << i << ": " << vis[i] << '\n';
// }
int len = (int)ceil(sqrt(n));
vector<int> ans, temp;
for(int beg = 1; beg <= 1 + len && dep[beg].size() > 0; beg++) {
for(int i = beg; dep[i].size() > 0; i += (2 * len + 1)) {
for(int j = 0; j < dep[i].size(); j++) {
temp.push_back(dep[i][j]);
}
}
// cerr << temp.size() << '\n';
if(ans.empty()) ans = temp;
else if(temp.size() < ans.size()) ans = temp;
temp.clear();
}
if(ans.size() > len) {
continue;
}
else {
cout << ans.size() << '\n';
for(int i = 0; i < ans.size(); i++) {
cout << ans[i] << ' ';
}
cout << '\n';
return;
}
}
cout << -1 << '\n';
}
signed main(){
io;
int T = 1;
cin >> T;
while(T--) {
solve();
}
return 0;
}
详细
Test #1:
score: 100
Accepted
time: 4ms
memory: 15752kb
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 4
result:
ok correct (2 test cases)
Test #2:
score: -100
Wrong Answer
time: 28ms
memory: 15140kb
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 7 1 5 1 2 1 2 1 2 1 4 1 1 1 8 1 2 1 2 2 2 13 1 2 1 2 1 8 1 2 1 7 2 1 14 1 2 1 4 1 15 1 2 1 2 1 8 1 4 1 2 1 7 1 2 1 2 -1 1 2 2 1 12 1 6 1 8 1 2 1 2 1 1 1 2 1 10 1 1 1 2 1 7 1 5 1 11 1 4 1 4 1 2 1 11 1 11 1 2 1 2 1 8 1 8 1 4 1 4 1 8 2 2 11 1 1 ...
result:
wrong answer Condition failed: "getMaxBfsDist(n, subset) <= csqrtn" (test case 1)