# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
556597 | MohamedFaresNebili | Hotter Colder (IOI10_hottercolder) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "hottercolder.h"
using namespace std;
using ll = long long;
using ii = pair<ll, ll>;
using vi = vector<int>;
#define ff first
#define ss second
#define pb push_back
#define all(x) (x).begin(), (x).end()
#define lb lower_bound
/// #define int ll
const int oo = 1e9 + 7;
int HC(int N) {
int lo = 1, hi = N, pr = 1; Guess(1);
while(lo <= hi) {
int to = (lo + hi) / 2;
int r = Guess(to), md = (to + pr) / 2 + 1 - (to + pr) % 2;
if(to > pr) {
if(r == -1) hi = md - 1;
if(r == 0) return (to + pr) / 2;
if(r == 1) lo = md + 1;
}
if(to < pr) {
if(r == -1) lo = md + 1;
if(r == 0) return (to + pr) / 2;
if(r == 1) hi = md - 1;
}
pr = to;
}
return N;
}