제출 #286401

#제출 시각아이디문제언어결과실행 시간메모리
286401AKaan37The Big Prize (IOI17_prize)C++17
0 / 100
102 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; inline void bin(int bas,int son){ if(bas>son)return; vector<int> res=ask(ort); if(res[0]+res[1]==0){flag=ort;return ;} bin(bas,ort-1); bin(ort+1,son); } int find_best(int n) { bin(0,n-1); return flag; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...