QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#174290 | #6634. Central Subset | cada_dia_mas_insanos# | TL | 63ms | 9712kb | C++17 | 1.9kb | 2023-09-10 06:09:18 | 2023-09-10 06:09:19 |
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];
mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());
int rand(int l, int r) {
return uniform_int_distribution<int>(l, r)(rng);
}
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);
}
int limit = ceil(sqrt(n));
vector <int> taken;
for (int it = 0; it < 2500; it++) {
taken.clear();
for (int i=0; i <n && taken.size() < limit; i++) {
if (rand(0, 1)) taken.push_back(i);
}
for (int i=0; i<n; i++) dis[i]=oo;
queue <int> q;
for(int& u : taken) dis[u]=0, q.push(u);
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);
}
}
}
bool ok=1;
for (int i=0; i<n; i++) ok&= dis[i]<=limit;
if (ok) break;
taken.clear();
}
if (taken.empty()) 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: 8400kb
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 3 1 5 6
result:
ok correct (2 test cases)
Test #2:
score: 0
Accepted
time: 63ms
memory: 9712kb
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:
4 3 4 9 11 3 1 3 4 4 4 6 7 9 1 1 1 2 3 1 5 6 1 1 4 1 5 6 7 4 3 4 7 10 4 1 6 7 8 5 1 8 11 14 15 2 2 7 4 1 4 6 9 5 1 3 9 10 13 2 2 3 4 2 3 9 11 3 3 4 5 1 1 3 1 2 3 5 1 2 3 4 5 2 2 3 3 1 2 3 4 1 4 5 7 5 2 4 6 12 14 2 1 5 4 2 4 6 12 3 2 3 5 3 7 11 15 2 2 3 2 1 6 5 6 7 9 16 ...
result:
ok correct (10000 test cases)
Test #3:
score: -100
Time Limit Exceeded
input:
100 2000 1999 529 528 885 884 1221 1222 375 374 245 244 758 757 711 710 1521 1522 1875 1874 749 750 823 822 1959 1958 1767 1766 155 154 631 632 825 824 1330 1331 457 456 1344 1343 1817 1818 413 414 582 583 1828 1827 1335 1336 654 655 162 161 1668 1667 1966 1967 1472 1471 1185 1184 518 517 1509 1510 ...
output:
-1 45 3 6 12 20 21 25 29 34 40 42 43 48 51 52 53 55 56 58 59 60 61 62 63 65 67 71 73 74 82 85 86 87 89 92 93 96 97 99 101 105 106 108 112 113 114 -1 -1 45 1 2 4 6 7 8 15 17 19 21 22 24 25 26 27 29 31 33 36 38 39 40 41 42 46 48 49 51 52 54 55 56 57 58 59 60 62 69 70 72 73 74 75 80 81 -1 45 1 3 4 5 ...