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 "popa.h"
using namespace std;
int st[1001],dr[1001];
int solutioneaza(int sta,int dre)
{
if(sta==dre)
return sta;
for(int i=sta;i<=dre;i++)
if(query(sta,dre,i,i)==1)
{
if(i!=sta)
st[i]=solutioneaza(sta,i-1);
if(i!=dre)
dr[i]=solutioneaza(i+1,dre);
return i;
}
return -1;
}
int solve(int n,int *Left, int *Right)
{
for(int i=0;i<n;i++)
st[i]=dr[i]=-1;
int x=solutioneaza(0,n-1);
for(int i=0;i<n;i++)
{
Left[i]=st[i];
Right[i]=dr[i];
}
return x;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |