이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<iostream>
#include<popa.h>
using namespace std;
int myway(int l,int r,int* Left,int* Right){
if(l>r) return -1;
if(l==r){
Left[l]=-1;
Right[l]=-1;
return l;
}
int g=-1;
for(int i=l; i<=r; i++){
if(query(l,i,i,r)==1){
Left[i]=myway(l,i-1,Left,Right);
Right[i]=myway(i+1,r,Left,Right);
g=i;
break;
}
}
return g;
}
int solve(int N,int* Left,int* Right){
int h=-1;
for(int i=0; i<N; i++){
if(query(0,i,i,N-1)){
h=i;
break;
}
}
myway(0,N-1,Left,Right);
return h;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |