# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
43022 | milmillin | Editor (BOI15_edi) | C++14 | 83 ms | 2516 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <cstdio>
#include <vector>
#include <algorithm>
using namespace std;
vector<int> undo;
vector<int> states;
bool isActive() {
return undo.size()%2==0;
}
int main () {
int n;
scanf("%d", &n);
states.push_back(0);
int x;
bool tmp;
for (int i = 0; i < n; i++) {
scanf("%d", &x);
if (x > 0) {
if (!isActive()) states.pop_back();
undo.clear();
states.push_back(x);
} else {
if (states.back() != 0) {
x = -x;
tmp = (!isActive() && (undo.empty() || x <= undo.front()));
while (!undo.empty() && undo.back() >= x) undo.pop_back();
if (tmp) states.pop_back();
undo.push_back(x);
}
}
//for (auto j : states) printf("%d ", j);
//printf("\n");
//for (auto j : undo) printf("%d ", j);
//printf("\n");
printf("%d\n", (isActive())?states.back():states[states.size()-2]);
}
return 0;
}
컴파일 시 표준 에러 (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... |