# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
219395 | ho94949 | Treatment Project (JOI20_treatment) | C++17 | 1666 ms | 123024 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>
using namespace std;
const int MAXM = 262144;
int N, M;
int T[MAXM], L[MAXM], R[MAXM], C[MAXM];
int XL[MAXM], YL[MAXM], XR[MAXM], YR[MAXM];
bool vis[MAXM];
set<pair<int, int> > idx[2*MAXM];
bool in[MAXM];
void pushc(int x, int y, int i)
{
//printf("PUSH %d %d %d\n", x, y, i);
x += MAXM;
while(x)
{
idx[x].emplace(y, i);
x /= 2;
}
in[i] = true;
}
vector<int> popc(int x, int y)
{
vector<int> ret;
int f = MAXM, t = x+MAXM;
while(f<=t && t)
{
if(t%2==0 || f==t)
{
auto it = idx[t].begin();
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... |