# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
287716 | 2020-08-31T22:46:59 Z | luciocf | popa (BOI18_popa) | C++14 | 101 ms | 500 KB |
#include <bits/stdc++.h> #include "popa.h" using namespace std; int solve(int n, int *l, int *r) { stack<int> stk; for (int i = 0; i < n; i++) { l[i] = r[i] = -1; while (stk.size() && query(stk.top(), i, i, i)) { l[i] = stk.top(); stk.pop(); } if (stk.size()) r[stk.top()] = i; stk.push(i); } int root; while (stk.size()) { root = stk.top(); stk.pop(); } return root; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 9 ms | 256 KB | Output is correct |
2 | Correct | 9 ms | 256 KB | Output is correct |
3 | Correct | 10 ms | 256 KB | Output is correct |
4 | Correct | 9 ms | 256 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 97 ms | 380 KB | Output is correct |
2 | Correct | 100 ms | 384 KB | Output is correct |
3 | Correct | 62 ms | 384 KB | Output is correct |
4 | Correct | 86 ms | 500 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 101 ms | 372 KB | Output is correct |
2 | Correct | 99 ms | 376 KB | Output is correct |
3 | Correct | 90 ms | 384 KB | Output is correct |
4 | Correct | 90 ms | 384 KB | Output is correct |