# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1042620 | Tob | COVID tests (CEOI24_covid) | C++14 | 7094 ms | 344 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 <bits/stdc++.h>
#define F first
#define S second
#define all(x) x.begin(), x.end()
#define pb push_back
#define FIO ios_base::sync_with_stdio(false); cin.tie(0); cout.tie(0)
using namespace std;
typedef long long ll;
typedef pair <ll, ll> pii;
int N;
double P;
bool test_students(vector<bool> mask) {
assert(mask.size() == (size_t)N);
string mask_str(N, ' ');
for (int i = 0; i < N; i++)
mask_str[i] = mask[i] ? '1' : '0';
printf("Q %s\n", mask_str.c_str());
fflush(stdout);
char answer;
scanf(" %c", &answer);
return answer == 'P';
}
vector<bool> find_positive() {
int n = N, d = 0;
double p = P;
double cur = 1-p;
while (cur >= 0.5) cur *= 1-p, d++;
auto iv = [&](int l, int r) {
vector <bool> v(n, 0);
for (int i = l; i <= r; i++) v[i] = 1;
return test_students(v);
};
vector <bool> res(n, 0);
if (p >= 0.201) {
vector <bool> v(n, 0);
for (int i = 0; i < n; i++) {
v[i] = 1;
res[i] = test_students(v);
v[i] = 0;
}
return res;
}
for (int i = 0; i < n; i += d) {
int r = min(n, i+d)-1;
while (i <= r && iv(i, r)) {
int lo = i, hi = r;
while (lo < hi) {
int mid = (lo + hi) / 2;
if (iv(i, mid)) hi = mid;
else lo = mid+1;
}
res[lo] = 1;
r = min(n-1, lo+d);
i = lo+1;
}
}
return res;
}
int main() {
int T;
scanf("%d %lf %d", &N, &P, &T);
for (int i = 0; i < T; i++) {
std::vector<bool> answer = find_positive();
assert(answer.size() == (size_t)N);
std::string answer_str(N, ' ');
for (int j = 0; j < N; j++)
answer_str[j] = answer[j] ? '1' : '0';
printf("A %s\n", answer_str.c_str());
fflush(stdout);
char verdict;
scanf(" %c", &verdict);
if (verdict == 'W')
exit(0);
}
return 0;
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |