# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
100717 |
2019-03-13T15:57:13 Z |
muradeyn |
Aliens (IOI07_aliens) |
C++14 |
|
5 ms |
512 KB |
/* Murad Eynizade */
#include <bits/stdc++.h>
#define intt long long
#define FAST_READ ios_base::sync_with_stdio(0);cin.tie(0);
#define F first
#define S second
using namespace std;
int n;
string s;
map< pair<int,int> ,int >mp;
bool ask(int x,int y) {
if (mp[{x,y}])return mp[{x,y}] == 1;
if (x >= n || x < 1 || y >= n || y < 1)return false;
cout<<"examine "<<x<<" "<<y<<endl;
cout<<flush<<endl;
cin>>s;
if (s == "true")mp[{x,y}] = 1;
else mp[{x,y}] = 2;
return (s == "true");
}
bool pos(int x,int y) {
if (x >= n || x < 1 || y >= n || y < 1)return false;
return true;
}
int x , y , old , rgx , lfx , m , pw , dwy , upy;
int main()
{
FAST_READ;
cin>>n>>x>>y;
//Right most
old = x; rgx = x; pw = 1;
while (ask(x + pw , y)) {
old = x + pw;
pw *= 2;
}
int l = old , r = x + pw;
while (l <= r) {
int mid = l + (r - l) / 2;
if (ask(mid , y)) {
rgx = mid;
l = mid + 1;
}
else r = mid - 1;
}
old = x; lfx = x; pw = 1;
while (ask(x - pw , y)) {
old = x - pw;
pw *= 2;
}
l = x - pw; r = old;
while (l <= r) {
int mid = l + (r - l) / 2;
if (ask(mid , y)) {
r = mid - 1;
lfx = mid;
}
else l = mid + 1;
}
m = rgx - lfx + 1;
old = y; dwy = y; pw = 1;
while (ask(x,y + pw)) {
old = y + pw;
pw *= 2;
}
l = old; r = y + pw;
while (l <= r) {
int mid = l + (r - l) / 2;
if (ask(x,mid)) {
l = mid + 1;
dwy = mid;
}
else r = mid - 1;
}
upy = dwy - m + 1;
//cout<<lfx<<" "<<rgx<<endl;
//cout<<upy<<" "<<dwy<<endl;
//cout<<m<<endl;
x = lfx + (rgx - lfx) / 2;
y = upy + (dwy - upy) / 2;
if (ask(x + 4 * m,y)) x += 2 * m;
else if (!(ask(x + 2 * m,y) && ask(x - 2 * m,y))) {
if (ask(x - 4 * m,y))x -= 2 * m;
else if (ask(x + 2 * m,y)) x += m , y += m;
else x -= m , y += m;
}
if (ask(x,y + 4 * m)) y += 2 * m;
else if (!(ask(x,y + 2 * m) && ask(x , y - 2 * m))) {
if (ask(x,y - 4 * m))y -= 2 * m;
else if (ask(x,y + 2 * m)) x += m , y += m;
else x += m , y -= m;
}
cout<<"solution "<<x<<" "<<y<<endl;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
384 KB |
Output is correct |
2 |
Correct |
2 ms |
384 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
256 KB |
Output is correct |
2 |
Correct |
2 ms |
512 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
3 ms |
384 KB |
Incorrect |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
2 ms |
256 KB |
Incorrect |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
3 ms |
332 KB |
Output is correct |
2 |
Correct |
3 ms |
256 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
340 KB |
Output is correct |
2 |
Correct |
3 ms |
384 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
384 KB |
Output is correct |
2 |
Correct |
2 ms |
384 KB |
Output is correct |
3 |
Correct |
3 ms |
424 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
256 KB |
Output is correct |
2 |
Correct |
3 ms |
384 KB |
Output is correct |
3 |
Correct |
5 ms |
256 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
4 ms |
384 KB |
Output is correct |
2 |
Correct |
2 ms |
256 KB |
Output is correct |
3 |
Correct |
2 ms |
384 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
4 ms |
256 KB |
Output is correct |
2 |
Correct |
3 ms |
336 KB |
Output is correct |
3 |
Correct |
5 ms |
384 KB |
Output is correct |