This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
#include "prize.h"
using namespace std;
#define pb push_back
#define ss second
#define ff first
#define pii pair<int,int>
#define mkp make_pair
const int maxn=2e5+5;
pii dp[maxn];
// vector<int> ask(int nd){
// return {1,2};
// }
pii f(int l,int r){
if(dp[l] == mkp(0,0)){
vector<int>p = ask(l);
dp[l].ff=p[0];
dp[l].ss=p[1];
}
if(dp[r] == mkp(0,0)){
vector<int> p = ask(r);
dp[r].ff=p[0];
dp[r].ss=p[1];
}
if(dp[l].ff+dp[l].ss == dp[r].ff+dp[r].ss and dp[l].ss - dp[r].ss == 0) return {dp[l].ff + dp[l].ss,l};
pii cep=f(l,(l+r)/2);
pii sag=f((l+r)/2,r);
if(cep.ff < sag.ff) return cep;
return sag;
}
int find_best(int n){
return f(0,n-1).ss;
}
// int main() {
// cout<< find_best(4);
// }
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |