# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
998035 | anHiep | Examination (JOI19_examination) | C++14 | 518 ms | 47684 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 int long long
#define ll long long
#define pb push_back
using namespace std;
struct point{
int a, b, c, id, val;
};
vector<point> student;
const int maxn = 1e6 + 10;
int ans[maxn];
bool cmp(point x, point y){
if(x.a != y.a) return x.a > y.a;
if(x.b != y.b) return x.b < y.b;
return x.c < y.c;
}
void inv(point &a){
a.a = -a.a;
a.b = -a.b;
a.c = -a.c;
}
int bit[maxn];
int getsum(int i){
# | 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... |