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 "Anna.h"
#include "bits/stdc++.h"
using namespace std;
namespace {
int n, l, r, ans;
} // namespace
void InitA(int N, int L, int R) {
::n = N;
::l = L;
::r = R;
for (int i = 0; i < 18; ++i) SendA((l >> i) & 1);
}
void ReceiveA(bool x) {
if (l <= r && x) ans = l;
++l;
}
int Answer() {
return ans;
}
#include "Bruno.h"
#include "bits/stdc++.h"
using namespace std;
namespace {
int n, l, cnt, ans = 2e9;
vector<int> p;
} // namespace
void InitB(int N, vector<int> P) {
::n = N;
::p = P;
}
void ReceiveB(bool y) {
if (y) l |= 1 << cnt;
++cnt;
if (cnt < 18) return;
for (int i = l; i < n; ++i) {
if (ans <= p[i]) {
SendB(0);
continue;
}
ans = p[i];
SendB(1);
}
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |