# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
829813 | rainboy | Toxic Gene (NOI23_toxic) | C++17 | 9 ms | 392 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include "toxic.h"
#include <string>
#include <vector>
using namespace std;
typedef vector<int> vi;
int min(int a, int b) { return a < b ? a : b; }
const int S = 8; /* 2^S <= 300 */
void determine_type(int n) {
string cc(n, '?');
int m = (n + S - 1) / S;
vi done(m, 0);
for (int h = 0; h < m; h++) {
int l = h * S, r = min((h + 1) * S, n);
vi ii;
for (int i = l; i < r; i++)
for (int t = 0; t < 1 << i - l; t++)
ii.push_back(i + 1);
int b = query_sample(ii);
if (b == (1 << r - l) - 1)
continue;
for (int i = l; i < r; i++)
if ((b & 1 << i - l) != 0)
cc[i] = 'S';
int lower = l, upper = r;
while (1) {
while (upper - lower > 1) {
int i_ = (lower + upper) / 2;
ii.clear();
for (int i = lower; i < i_; i++)
ii.push_back(i + 1);
if (query_sample(ii) == i_ - lower)
lower = i_;
else
upper = i_;
}
cc[lower++] = 'T';
upper = r;
ii.clear();
for (int i = lower; i < upper; i++)
ii.push_back(i + 1);
if (ii.size() == 0 || query_sample(ii) == upper - lower)
break;
}
for (int i = l; i < r; i++)
if (cc[i] == '?')
cc[i] = 'R';
}
int t = 0;
while (cc[t] != 'T')
t++;
for (int h = 0; h < m; h++) {
int l = h * S, r = min((h + 1) * S, n);
if (cc[l] != '?')
continue;
vi ii;
ii.push_back(t + 1);
for (int i = l; i < r; i++)
for (int t = 0; t < 1 << i - l; t++)
ii.push_back(i + 1);
int b = query_sample(ii);
for (int i = l; i < r; i++)
cc[i] = (b & 1 << i - l) != 0 ? 'S' : 'R';
}
for (int i = 0; i < n; i++)
answer_type(i + 1, cc[i]);
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |