# |
제출 시각 |
아이디 |
문제 |
언어 |
결과 |
실행 시간 |
메모리 |
70047 |
2018-08-22T09:46:03 Z |
3zp |
popa (BOI18_popa) |
C++14 |
|
103 ms |
704 KB |
#include<bits/stdc++.h>
#include "popa.h"
using namespace std;
int l[1009], r[1009], A[1009];
int SOLVE(int le, int ri, int *Left, int *Right){
if(le > ri) return -1;
for(int i = le; i <= ri; i++){
if(l[i] <= le && r[i] >= ri){
int A = SOLVE(le, i - 1, Left, Right);
int B = SOLVE(i + 1, ri, Left, Right);
Left[i] = A;
Right[i] = B;
return i;
}
}
}
int solve(int N, int* Left, int* Right){
stack<int> S;
for(int i = 0; i < N; i++){
while(S.size() && query(S.top(), i,i,i)){
S.pop();
}
if(!S.size()) l[i] = 0;
else l[i] = S.top() + 1;
S.push(i);
}
for(int i = 0; i < N; i++){
r[i] = N - 1;
for (int j = i + 1; j < N; j++){
if(l[j] <= i) {
r[i] = j - 1;
break;
}
}
// cout << i <<" "<<r[i]<<" "<<l[i]<<endl;
}
return SOLVE(0, N - 1, Left, Right);
}
Compilation message
popa.cpp: In function 'int SOLVE(int, int, int*, int*)':
popa.cpp:16:1: warning: control reaches end of non-void function [-Wreturn-type]
}
^
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
11 ms |
248 KB |
Output is correct |
2 |
Correct |
10 ms |
308 KB |
Output is correct |
3 |
Correct |
13 ms |
384 KB |
Output is correct |
4 |
Correct |
9 ms |
432 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
79 ms |
600 KB |
Output is correct |
2 |
Correct |
90 ms |
600 KB |
Output is correct |
3 |
Correct |
49 ms |
704 KB |
Output is correct |
4 |
Correct |
49 ms |
704 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
84 ms |
704 KB |
Output is correct |
2 |
Correct |
103 ms |
704 KB |
Output is correct |
3 |
Correct |
76 ms |
704 KB |
Output is correct |
4 |
Correct |
86 ms |
704 KB |
Output is correct |