# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
94015 | tincamatei | Flood (IOI07_flood) | C++14 | 0 ms | 0 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>
using namespace std;
bool examine(long long l, long long c, int n) {
string str;
if(l < 1 || l > n || c < 1 || c > n)
return false;
cout << "examine " << l << ' ' << c << endl;
cin >> str;
return str == "true";
}
pair<long long, long long> getNextWhite(long long l, long long c, int dl, int dc, int n) {
int lg = 0;
while(examine(l + dl * (1LL << lg), c + dc * (1LL << lg), n))
++lg;
long long l2 = l + dl * (1 << lg), c2 = c + dc * (1 << lg);
while(llabs(c2 - c) > 1 || llabs(l2 - l) > 1) {
long long midl, midc;
midl = (l + l2) / 2;
midc = (c + c2) / 2;
if(examine(midl, midc, n)) {
l = midl;
c = midc;
} else {
l2 = midl;
c2 = midc;