# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
17867 | Elibay | Collider (IZhO11_collider) | C++14 | 593 ms | 49680 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 MaxN = 1e6 + 17, INF = 1e9;
int n, m;
char c[MaxN];
struct node
{
int cnt, y, x;
node *l, *r;
node (int X = INF)
{
cnt = 1;
x = X;
y = rand ();
l = r = NULL;
}
} *t;
typedef node* pnode;
int GetSz (pnode t)
{
if (!t)
return 0;
return t -> cnt;
}
int GetKey (pnode t)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |