# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
573883 | Sho10 | Hotter Colder (IOI10_hottercolder) | C++17 | 10020 ms | 8048 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h> //Andrei Alexandru a.k.a Sho
#include "grader.h"
using ll=long long;
using ld=long double;
int const INF=1000000005;
ll const LINF=1000000000000000005;
ll const mod=6700417;
ld const PI=3.14159265359;
ll const MAX_N=3e5+5;
ld const EPS=0.00000001;
#pragma GCC optimize("O3")
#pragma GCC optimize("Ofast")
#define f first
#define s second
#define pb push_back
#define mp make_pair
#define endl '\n'
#define sz(a) (int)a.size()
#define CODE_START ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0);
using namespace std;
int n,check=0,last=0,cnt=0;
ll solve(ll l,ll r){
ll mid=(l+r)/2;
if(l==r){
return l;
}
if(last==-1){
ll x=Guess(l);
cnt++;
last=1;
}
if(cnt>30){
for(ll i=1;i<=1e18;i++)
{
cnt++;
}
}
if(last==1){
ll x=Guess(r);
cnt++;
if(cnt>30){
for(ll i=1;i<=1e18;i++)
{
cnt++;
}
}
last=2;
if(x==1){
return solve(mid+1,r);
}else if(x==-1){
last=-1;
return solve(l,mid);
}else if(x==0){
last=-1;
return solve(l,mid);
}
}else if(last==2){
ll x=Guess(l);
cnt++;
if(cnt>30){
for(ll i=1;i<=1e18;i++)
{
cnt++;
}
}
last=1;
if(x==1){
return solve(l,mid);
}else if(x==0){
return solve(l,mid);
}else if(x==-1){
last=-1;
return solve(mid+1,r);
}
}
}
int HC(int N){
if(N==1){
return 1;
}
ll x=Guess(N-1);
ll y=Guess(N);
cnt=2;
if(y==1){
return N;
}
last=2;
return solve(1,N);
}
컴파일 시 표준 에러 (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... |