# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
934904 | IBory | New Home (APIO18_new_home) | C++17 | 5096 ms | 535808 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
#define pii pair<int, int>
using namespace std;
const int SZ = 1 << 20;
int P[SZ], S[SZ], X[SZ], ans[SZ];
multiset<int> CX[SZ];
struct Seg {
priority_queue<int> T[SZ << 1], E[SZ << 1];
int CL[SZ << 1], CR[SZ << 1];
void Update(int L, int R, int v, bool e) {
int sL = 1, sR = SZ, n = 1;
queue<tuple<int, int, int>> Q;
Q.emplace(1, SZ, 1);
while (!Q.empty()) {
auto [sL, sR, n] = Q.front(); Q.pop();
if (R < sL || sR < L) continue;
if (L <= sL && sR <= R) {
(e ? E[n] : T[n]).push(v);
continue;
}
int mid = (sL + sR) >> 1;
Q.emplace(sL, mid, n * 2);
Q.emplace(mid + 1, sR, n * 2 + 1);
}
}
int Query(int p) {
int sL = 1, sR = SZ, n = 1, ret = -1e9;
Compilation message (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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |