# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
643862 | KindaNameless | Aliens (IOI07_aliens) | C++14 | 2 ms | 208 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<algorithm>
#include<assert.h>
#include<iostream>
#include<iomanip>
#include<cstring>
#include<numeric>
#include<string>
#include<vector>
#include<bitset>
#include<queue>
#include<stack>
#include<deque>
#include<cmath>
#include<map>
#include<set>
using namespace std;
#define ll long long
#define ld long double
ll N, cnt = 0;
bool ask(ll x, ll y){
if(x <= 0 || y <= 0 || x > N || y > N)return 0;
cnt++;
assert(cnt <= 300);
cout << "examine " << x << " " << y << "\n"; cout << flush;
string s; cin >> s;
return s[0] == 't';
}
ll check(ll x, ll y, ll dx, ll dy){
ll p = 1;
while(ask(x + p*dx, y + p*dy)){
p *= 2LL;
}
ll l = p/2, r = p;
while(r - l > 1){
ll m = (l + r) / 2;
if(ask(x + p*dx, y + p*dy)){
l = m;
}
else r = m;
}
return l;
}
int main(){
//ios::sync_with_stdio(0); cin.tie(0); cout.tie(0);
ll x, y; cin >> N >> x >> y;
ll L, R, D, U, a, b, c, d;
L = x - check(x, y, -1, 0);
R = x + check(x, y, 1, 0);
D = y - check(x, y, 0, -1);
U = y + check(x, y, 0, 1);
ll M = R - L + 1;
ll xc = (L + R)/2LL, yc = (D + U)/2LL;
assert(M & 1LL);
x = xc - 2LL*M; y = yc;
while(ask(x, y))x -= 2LL*M;
L = x + 2LL*M;
x = xc + 2LL*M; y = yc;
while(ask(x, y))x += 2LL*M;
R = x - 2LL*M;
x = xc; y = yc + 2LL*M;
while(ask(x, y))y += 2LL*M;
D = y - 2LL*M;
x = xc; y = yc - 2LL*M;
while(ask(x, y))y -= 2LL*M;
U = y + 2LL*M;
cout << "solution " << (L + R)/2LL << " " << (D + U)/2LL << "\n"; cout << flush;
return 0;
}
컴파일 시 표준 에러 (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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |