# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
712020 | pcc | Checker (COCI19_checker) | C++14 | 390 ms | 55344 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define pii pair<int,int>
#define fs first
#define sc second
struct node{
set<pii> st;
int pre,nxt;
bool del;
node(){
pre = nxt = 0;
del = false;
}
void add(int to,int c){
st.insert({to,c});
}
int get(int k){
auto it = st.upper_bound(make_pair(k,-1));
if(it == st.end()||it->fs != k)return 0;
return it->sc;
}
};
const int mxn = 2e5+10;
node v[mxn];
void remov(int k){
v[v[k].pre].nxt = v[k].nxt;
v[v[k].nxt].pre = v[k].pre;
v[k].del = true;
return;
# | 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... |