답안 #105477

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
105477 2019-04-12T15:03:17 Z SOIVIEONE Aliens (IOI07_aliens) C++14
30 / 100
4 ms 408 KB
#include <bits/stdc++.h>
//#include <ext/pb_ds/assoc_container.hpp>
 
#define INF 1000000021
#define MOD 1000000007
#define pb push_back
#define sqr(a) (a)*(a)
#define M(a, b) make_pair(a,b)
#define T(a, b, c) make_pair(a, make_pair(b, c))
#define F first
#define S second
#define all(x) (x.begin(), x.end())
#define deb(x) cerr << #x << " = " << x << '\n'
#define N 222222
 
using namespace std;
//using namespace __gnu_pbds;
 
typedef long double ld;
typedef long long ll;
typedef pair<int,int> pii;
typedef pair<ll, ll> pll;
typedef vector<int> vi;
typedef vector<ll> vll;
//typedef tree<int, null_type, less<int>, rb_tree_tag, tree_order_statistics_node_update> indexed_set;
 
const ld pi = 2 * acos(0.0);
template<class T> bool umin(T& a, T b){if(a>b){a=b;return 1;}return 0;}
template<class T> bool umax(T& a, T b){if(a<b){a=b;return 1;}return 0;}
template<class T, class TT> bool pal(T a, TT n){int k=0;for(int i=0;i<=n/2;i++){if(a[i]!=a[n-i-1]){k=1;break;}}return k?0:1;}
 
//int month[] = {0,31,28,31,30,31,30,31,31,30,31,30,31};
ll n;
map<pii, int > mp;
int ask(ll x, ll y)
{
	if(!(x >= 0 && x <= n) || !(y >= 0 && y <= n))
		return 0;
	if(mp.count(M(x, y)))
		return mp[M(x, y)];
	cout << "examine " << x << ' ' << y << '\n';
	cout.flush();
	string q;
	cin >> q;
	return mp[M(x, y)] = (q[0] == 't');
}
 
int main()
{
	ll x, y;
	cin >> n >> x >> y;
	ll p = 1;
	while(x + p <= n && ask(x + p, y))
		p *= 2;
//	cout << "first\n";
	ll l = x + p / 2, r = min(x + p, n);
	ll hoo = 0;
	while(l < r)
	{
		ll m = (l + r) >> 1ll;
		if(ask(m, y))
		{
			hoo = m;
			l = m + 1;
		}
		else
			r = m;
	}
	if(ask(r, y))
		if(r > hoo)
			hoo = r;
//	cout << "second\n";	
	p = 1;
	while(x - p >= 0 && ask(x - p, y))
		p *= 2;
//	cout << "fourth\n";		
	l = max(x - p, 0ll); r = x - p / 2;
	ll foo = l;
	while(l < r)
	{
		ll m = (l + r) >> 1ll;
		if(ask(m, y)) 
		{
			foo = m;
			r = m;
		}
		else
			l = m + 1;
	}
	if(ask(l, y))
		foo = l;
//	cout << "fifth\n";
	ll M = hoo - foo + 1;
	ll cur = foo, lx = 1,lef = foo;
	while(cur - M - M >= 0 && ask(cur-M-M, y))
	{
		cur -= (M + M);
		lef = cur;
		lx ++;
	}
	p = 1;
	while(y <= n && ask(x, y + p))
		p *= 2;
	l = y + p / 2; r = min(y + p, n);
//	cout << "sixth\n"; 
	ll ry = l;
	while(l < r)
	{
		ll m = (l + r) >> 1ll;
		if(ask(x, m))
			l = m+1,
			ry = m;
		else
			r = m;
	}
	if(ask(x, l))
		ry = l;
	cur = ry;
	ll oo = 0, up = cur;
	while(ask(x, cur+M+M) && cur + M + M <= n)
	{
		cur += M+M;
		up = cur;
	}
	ll rx = lef;
	ry = up;
	ll ax = M*5+rx-1, ay = -M*5+ry+1;
	cout << "solution " << (rx + ax) / 2 << ' ' << (ry + ay) / 2 << '\n';
	cout.flush();
 
	getchar();
	getchar();
	return 0;
	//ios::sync_with_stdio(false);
	//cin.tie(0);
}

Compilation message

aliens.cpp: In function 'int main()':
aliens.cpp:119:5: warning: unused variable 'oo' [-Wunused-variable]
  ll oo = 0, up = cur;
     ^~
# 결과 실행 시간 메모리 Grader output
1 Correct 2 ms 256 KB Output is correct
2 Incorrect 2 ms 256 KB Incorrect
# 결과 실행 시간 메모리 Grader output
1 Correct 2 ms 384 KB Output is correct
2 Correct 2 ms 384 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 2 ms 256 KB Output is correct
2 Correct 3 ms 384 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 2 ms 256 KB Output is correct
2 Incorrect 2 ms 256 KB Incorrect
# 결과 실행 시간 메모리 Grader output
1 Correct 2 ms 256 KB Output is correct
2 Incorrect 3 ms 256 KB Incorrect
# 결과 실행 시간 메모리 Grader output
1 Incorrect 3 ms 256 KB Incorrect
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 3 ms 384 KB Output is correct
2 Incorrect 3 ms 384 KB Incorrect
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 2 ms 328 KB Output is correct
2 Incorrect 3 ms 384 KB Incorrect
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 4 ms 408 KB Output is correct
2 Correct 4 ms 284 KB Output is correct
3 Correct 2 ms 256 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 4 ms 384 KB Output is correct
2 Correct 2 ms 324 KB Output is correct
3 Incorrect 4 ms 256 KB Incorrect