# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
347678 | beksultan04 | 커다란 상품 (IOI17_prize) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "prize.h"
//#include "grader.cpp"
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define pii pair<int,int>
#define OK puts("OK");
#define NO puts("NO");
#define YES puts("YES");
#define fr first
#define sc second
#define ret return
#define scanl(a) scanf("%lld",&a);
#define scanll(a,b) scanf("%lld %lld",&a, &b);
#define scanlll(a,b,c) scanf("%lld %lld %lld",&a,&b,&c);
#define scan1(a) scanf("%d",&a);
#define scan2(a,b) scanf("%d %d",&a, &b);
#define scan3(a,b,c) scanf("%d %d %d",&a,&b,&c);
#define all(s) s.begin(),s.end()
#define allr(s) s.rbegin()Ñ,s.rend()
#define pb push_back
#define sz(v) (int)v.size()
#define endi puts("");
#define eps 1e-12
const int N = 3e5+12,INF=1e9+7;
int find_best(int n) {
int mx=0,i=0;n--;
while(1){
{
vector <int> a = ask(i);
if (!(a[0]+a[1]))ret i;
mx = max(a[0]+a[1],mx);
if (mx == a[0]+a[1]){
int l = i,r = n;
while (r >= l){
int m = l+r>>1;
vector <int> b = ask(m);
if (!(b[0]+b[1]))ret m;
if (!b[1]){
n = m;
}
if (!b[0] || a == b){
l = m+1;
i = m;
}
else {
r = m-1;
}
}
}
}
{
vector <int> a = ask(n);
if (!(a[0]+a[1]))ret n;
mx = max(a[0]+a[1],mx);
int l = i,r = n;
while (r >= l){
int m = l+r>>1;
vector <int> b = ask(m);
if (!(b[0]+b[1]))ret m;
if (!b[0]){
i = m;
l = m+1
}
if (!b[1] || a == b){
r = m-1;
n = m-1;
}
else {
l = m+1;
}
}
}
i++;
}
}