# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
287768 | b00n0rp | Teams (IOI15_teams) | C++17 | 3577 ms | 146168 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 "teams.h"
#include<bits/stdc++.h>
using namespace std;
#define pii pair<int,int>
#define F first
#define S second
#define pb push_back
const int MAXN = 500005;
const int LIM = 120;
const int LG = 40;
int n;
pii a[MAXN];
int dp[MAXN];
int root[MAXN];
int SZ = 0;
int seg[MAXN*LG],lft[MAXN*LG],rgt[MAXN*LG];
int lb[MAXN];
int build(int l,int r){
int ind = ++SZ;
if(l == r) return ind;
int mid = (l+r)/2;
lft[ind] = build(l,mid);
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... |