# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
145050 | faremy | Global Warming (CEOI18_glo) | C++14 | 503 ms | 9432 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <algorithm>
#include <set>
struct Seq
{
Seq(int v, int s) : maxVal(v), size(s) {}
int maxVal, size;
bool operator <(const Seq &other) const
{
return (maxVal < other.maxVal);
}
};
const int MAXN = 2e5;
int temp[MAXN];
int lis[MAXN], lds[MAXN];
std::set<Seq> stacket;
void insert(Seq sequence)
{
while (stacket.lower_bound(sequence) != stacket.end() && stacket.lower_bound(sequence)->size <= sequence.size)
stacket.erase(stacket.lower_bound(sequence));
std::set<Seq>::iterator prev = stacket.upper_bound(sequence);
# | 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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |