이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#include "popa.h"
using namespace std;
int solve(int n , int *Left , int *Right) {
stack<int> st;
int root = 0;
for(int i = 0; i < n; ++i)Left[i] = Right[i] = -1;
st.push(0);
for(int i =1; i < n; ++i){
while(st.size() && query(st.top() , i , i , i)){
Right[st.top()] = Left[i];
Left[i] = st.top();
st.pop();
}
if(st.size()) Right[st.top()] = i;
else root = i;
st.push(i);
}
return root;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |