제출 #286249

#제출 시각아이디문제언어결과실행 시간메모리
286249AKaan37커다란 상품 (IOI17_prize)C++17
20 / 100
103 ms256 KiB
#include "prize.h"
#pragma GCC optimize ("O3")
#pragma GCC target ("sse4")
 
#include <bits/stdc++.h>
 
using namespace std;
 
typedef long long lo;
typedef pair< int,int > PII;
 
#define fi first
#define se second
#define mp make_pair
#define pb push_back
#define fio() ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL)
#define FOR for(int i=1;i<=n;i++)
#define mid ((start+end)/2)
#define ort ((bas+son)/2)
 
const lo MAX = -1000000000000000000;
const lo MIN = 1000000000000000000;
const lo inf = 1000000000;
const lo KOK = 100000;
const lo LOG = 30;
const lo li = 500005;
const lo mod = 1000000007;
 
int n,m,b[li],a[li],k,flag,t;
int cev;
string s;
vector<int> v;
 
int find_best(int n) {
	int ind=0;
	while(1){
		vector<int> res=ask(ind);
		if(res[0]+res[1]==0)return ind;
		if(res[0]){
			int bas=0;
			int son=ind;
			while(bas<=son){
				vector<int> res1=ask(ort);
				if(res1[0]==res[0])son=ort-1;
				else bas=ort+1;
			}
			ind=son;
		}
		else{
			int bas=ind;
			int son=n-1;
			while(bas<=son){
				vector<int> res1=ask(ort);
				if(res1[1]!=res[1])son=ort-1;
				else bas=ort+1;
			}
			ind=bas;
		}
	}
	//~ cout<<islem<<endl;
	//~ return son;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...