#include <bits/stdc++.h>
#include "popa.h"
using namespace std;
int solve(int N, int* Left, int* Right){
stack<int> s;
for (int i = 0; i < N; i++){
Left[i] = -1;
Right[i] = -1;
}
for (int i = 0; i < N; i++){
while (!s.empty()){
int x = s.top();
if (query(x, x, x, i)) {
Right[x] = i;
break;
}
s.pop();
}
Left[i] = (s.empty() ? -1 : s.top());
s.push(i);
}
while (s.size() > 1) s.pop();
return s.top();
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
2 ms |
336 KB |
Execution killed with signal 13 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
14 ms |
288 KB |
Execution killed with signal 13 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
23 ms |
288 KB |
Execution killed with signal 13 |
2 |
Halted |
0 ms |
0 KB |
- |