# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
733373 | benjaminkleyn | Examination (JOI19_examination) | C++17 | 696 ms | 55300 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;
typedef long long ll;
struct Query
{
int A, B, C, idx;
int a, b;
Query() : a(0), b(0), A(0), B(0), C(0), idx(0) {}
Query(int _a, int _b, int _c, int _idx) : a(0), b(0), A(_a), B(_b), C(_c), idx(_idx) {}
};
struct Student
{
int S, T, idx;
int s, t;
Student() : s(0), t(0), S(0), T(0), idx(0) {}
};
int n, q;
struct SegTree
{
int t[1000000] = {0};
SegTree() {}
void update(int idx, int v = 1, int tl = 0, int tr = 200000)
{
if (tl == tr)
{
t[v]++;
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... |