# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
390997 | parsabahrami | 치료 계획 (JOI20_treatment) | C++17 | 2611 ms | 212776 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
/* There's someone in my head but it's not me */
#include <bits/stdc++.h>
using namespace std;
typedef long long int ll;
typedef pair<int, int> pii;
#define SZ(x) (int) x.size()
#define F first
#define S second
#define lc id << 1
#define rc lc | 1
const int N = 1e5 + 10;
struct ver { int l, r, t, c; };
int n, m, M[N]; ll dp[N]; array<set<pii>, 2> seg[N << 2]; ver A[N];
void build(int id = 1, int l = 1, int r = m + 1) {
for (int i = l; i < r; i++) {
seg[id][0].insert({A[i].l + A[i].t, i});
seg[id][1].insert({A[i].l - A[i].t, i});
}
if (r - l < 2) return;
int md = (l + r) >> 1;
build(lc, l, md), build(rc, md, r);
}
void remove(int p, int id = 1, int l = 1, int r = m + 1) {
seg[id][0].erase({A[p].l + A[p].t, p});
컴파일 시 표준 에러 (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... |