# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
457714 | zeyu | Bitaro’s Party (JOI18_bitaro) | C++17 | 2073 ms | 105440 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define maxn 100010
using namespace std;
const int B = 320;
int n, m, q;
typedef pair<int, int> pi;
vector<int> prv[maxn];
set<pi> top[maxn];
set<pi> pot[maxn];
void add(pi p, int i){
set<pi>::iterator q = pot[i].lower_bound(make_pair(p.second, 0));
if (q != pot[i].end() && q -> first == p.second){
p = max(p, make_pair(q -> second, q -> first));
pot[i].erase(q);
pot[i].insert(make_pair(p.second, p.first));
top[i].erase(make_pair(q -> second, q -> first));
top[i].insert(p);
} else{
if (top[i].size() < B){
top[i].insert(p);
pot[i].insert(make_pair(p.second, p.first));
} else{
if (top[i].begin() -> first < p.first){
top[i].erase(top[i].begin());
top[i].insert(p);
pot[i].insert(make_pair(p.second, p.first));
}
}
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |