QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#380397 | #5531. ICC | nhuang685# | 61 | 99ms | 4284kb | C++20 | 4.1kb | 2024-04-07 02:54:08 | 2024-07-01 04:28:52 |
Judging History
answer
#include <bits/stdc++.h>
#ifndef LOCAL
#include "icc.h"
#endif
std::vector<std::vector<int>> gr;
std::vector<int> par;
std::vector<int> nodes;
std::mt19937 rng(std::chrono::steady_clock::now().time_since_epoch().count());
// std::mt19937 rng(2);
int find(int a) {
return par[a] < 0 ? a : par[a] = find(par[a]);
}
#ifdef LOCAL
namespace iv {
std::array<std::array<bool, 101>, 101> cc;
int na = -1, nb = -1;
int cnt = 0;
int num = 0;
int n;
} // namespace iv
int query(int a, int b, int *A, int *B) {
++iv::cnt;
for (int ii = 0; ii < a; ++ii) {
int i = A[ii];
for (int jj = 0; jj < b; ++jj) {
int j = B[jj];
if (iv::cc[i][j]) {
return true;
}
}
}
return false;
}
bool connected(int a, int b) {
if (a == b) {
return true;
}
if (par.empty()) {
return false;
}
a = find(a);
b = find(b);
return a == b;
}
void newQuery() {
while (true) {
int a = (int)(rng() % iv::n + 1);
int b = (int)(rng() % iv::n + 1);
if (!connected(a, b)) {
if (a > b) {
std::swap(a, b);
}
iv::na = a;
iv::nb = b;
iv::cc[a][b] = true;
iv::cc[b][a] = true;
return;
}
}
}
void setRoad(int a, int b) {
if (a > b) {
std::swap(a, b);
}
++iv::num;
std::cerr << "Query " << iv::num << ":" << std::endl;
std::cerr << "Your answer is: " << a << ' ' << b << std::endl;
std::cerr << "The correct answer is: " << iv::na << ' ' << iv::nb
<< std::endl;
std::cerr << std::endl;
if (iv::na != a || iv::nb != b) {
std::cerr << "Wrong Answer" << std::endl;
std::exit(0);
}
if (iv::num < iv::n - 1) {
newQuery();
}
}
#endif
bool query(std::vector<int> &a, std::vector<int> &b) {
if (a.empty() || b.empty()) {
return false;
}
return query((int)a.size(), (int)b.size(), a.data(), b.data());
}
void unite(int a, int b) {
int aa = a, bb = b;
a = find(a);
b = find(b);
if (par[a] > par[b]) {
std::swap(a, b);
}
gr[a].insert(gr[a].end(), gr[b].begin(), gr[b].end());
gr[b].clear();
par[a] += par[b];
par[b] = a;
setRoad(aa, bb);
}
void run(int N) {
const int n = N;
gr.resize(n + 1);
for (int i = 1; i <= n; ++i) {
gr[i].push_back(i);
}
par.resize(n + 1, -1);
for (int i = 0; i < n - 1; ++i) {
std::vector<int> a, b;
nodes.clear();
for (int j = 1; j <= n; ++j) {
if (par[j] < 0) {
nodes.push_back(j);
}
}
while (true) {
a.clear();
b.clear();
std::shuffle(nodes.begin(), nodes.end(), rng);
for (int j = 0; j < (int)nodes.size() / 2; ++j) {
a.insert(a.end(), gr[nodes[j]].begin(), gr[nodes[j]].end());
}
for (int j = (int)nodes.size() / 2; j < (int)nodes.size(); ++j) {
b.insert(b.end(), gr[nodes[j]].begin(), gr[nodes[j]].end());
}
if (query(a, b)) {
break;
}
}
while ((int)a.size() > 1) {
std::vector<int> na1(a.begin(), a.begin() + a.size() / 2),
na2(a.begin() + a.size() / 2, a.end());
if (query(na1, b)) {
a = na1;
} else {
a = na2;
}
}
while ((int)b.size() > 1) {
std::vector<int> nb1(b.begin(), b.begin() + b.size() / 2),
nb2(b.begin() + b.size() / 2, b.end());
if (query(nb1, a)) {
b = nb1;
} else {
b = nb2;
}
}
unite(a[0], b[0]);
}
}
#ifdef LOCAL
int main() {
int n;
std::cin >> n;
iv::n = n;
newQuery();
run(n);
std::cerr << "Number of queries used: " << iv::cnt << '\n';
}
#endif
Details
Tip: Click on the bar to expand more detailed information
Subtask #1:
score: 7
Accepted
Test #1:
score: 7
Accepted
time: 2ms
memory: 4228kb
input:
1 1500 3 15 0 2 0.0 2.5 0 3.5 0 1 1
output:
3 Ok! 105 queries used.
result:
ok
Test #2:
score: 0
Accepted
time: 4ms
memory: 4156kb
input:
1 1500 4 15 0 0 0.0 3.5 0 2.5 5 1 1
output:
4 Ok! 103 queries used.
result:
ok
Subtask #2:
score: 11
Accepted
Test #3:
score: 11
Accepted
time: 19ms
memory: 4248kb
input:
1 2500 4 50 0 0 0.0 3.5 0 2.5 5 1 1
output:
4 Ok! 546 queries used.
result:
ok
Test #4:
score: 0
Accepted
time: 30ms
memory: 4240kb
input:
1 2500 4 50 0 1.3 0.0 0.7 0 3.5 15 2 1
output:
4 Ok! 837 queries used.
result:
ok
Test #5:
score: 0
Accepted
time: 22ms
memory: 4228kb
input:
1 2500 3 50 0.05 2.3 0.1 0.7 0 1.5 1.7 2 1
output:
3 Ok! 812 queries used.
result:
ok
Subtask #3:
score: 22
Accepted
Test #6:
score: 22
Accepted
time: 70ms
memory: 4196kb
input:
1 2250 6 100 0.05 2.3 0.1 0.7 0 1.5 1.7 1.1 1
output:
6 Ok! 1557 queries used.
result:
ok
Test #7:
score: 0
Accepted
time: 99ms
memory: 4188kb
input:
1 2250 6 100 0.05 1.5 0.1 1.3 0.01 1.7 0 100 1
output:
6 Ok! 2127 queries used.
result:
ok
Test #8:
score: 0
Accepted
time: 80ms
memory: 4268kb
input:
1 2250 5 100 0.00 2.00 0.00 1.70 0.10 1.30 5 1.15 1
output:
5 Ok! 1742 queries used.
result:
ok
Test #9:
score: 0
Accepted
time: 79ms
memory: 4188kb
input:
1 2250 5 100 0.00 1.00 0.00 2.30 0.00 0.70 0 1.1 1
output:
5 Ok! 1744 queries used.
result:
ok
Subtask #4:
score: 21
Accepted
Test #10:
score: 21
Accepted
time: 75ms
memory: 4256kb
input:
1 2000 5 100 0.01 1.00 0.10 1.70 0.00 1.50 5.0 1.20 1
output:
5 Ok! 1646 queries used.
result:
ok
Test #11:
score: 0
Accepted
time: 85ms
memory: 4268kb
input:
1 2000 5 100 0.00 0.70 0.00 2.10 0.00 1.20 0.0 1.5 1
output:
5 Ok! 1864 queries used.
result:
ok
Test #12:
score: 0
Accepted
time: 73ms
memory: 4180kb
input:
1 2000 6 100 0.01 0.70 0.00 2.70 0.00 1.90 3.5 1.1 1
output:
6 Ok! 1620 queries used.
result:
ok
Test #13:
score: 0
Accepted
time: 75ms
memory: 4284kb
input:
1 2000 5 100 0.01 1.00 0.10 1.70 0.01 2.30 5.0 1.20 1
output:
5 Ok! 1634 queries used.
result:
ok
Subtask #5:
score: 0
Wrong Answer
Test #14:
score: 0
Wrong Answer
time: 85ms
memory: 4240kb
input:
1 1775 4 100 0.00 0.00 0.00 2.70 0.10 7.55 0.0 1.15 1
output:
0 Too many queries! 1797 out of 1775
result:
wrong answer
Subtask #6:
score: 0
Wrong Answer
Test #20:
score: 0
Wrong Answer
time: 95ms
memory: 4180kb
input:
1 1625 5 100 0.00 0.00 0.00 3.00 0.00 1.00 0.0 3 1
output:
0 Too many queries! 2057 out of 1625
result:
wrong answer