# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
44634 | RayaBurong25_1 | Editor (BOI15_edi) | C++17 | 203 ms | 37864 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <stdio.h>
#include <map>
typedef struct node node;
struct node
{
std::map<std::pair<int, int>, int> last;
};
node N[300005];
int P[300005];
int main()
{
int n;
scanf("%d", &n);
int i, x;
std::map<std::pair<int, int>, int>::iterator it;
P[0] = 0;
for (i = 1; i <= n; i++)
{
scanf("%d", &x);
if (x > 0)
{
P[i] = x;
N[x].last[{0, -i}] = P[i - 1];
printf("%d\n", x);
}
else
{
it = N[P[i - 1]].last.lower_bound({x + 1, -i});
P[i] = it->second;
N[it->second].last[{x, -i}] = P[i - 1];
printf("%d\n", it->second);
}
}
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |