# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
123976 | win11905 | Jousting tournament (IOI12_tournament) | C++11 | 124 ms | 21488 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 pii pair<int, int>
#define x first
#define y second
using namespace std;
const int N = 1<<17;
struct node {
int mx, argmx;
vector<int> son;
};
int n, r, t[N], idx[N];
node g[N<<1];
void update(int x) {
if(x <= n) t[x]--, update(x + (x & -x));
}
int query(int x) {
return t[x] + (x ? query(x - (x & -x)) : 0);
}
int get(int x) {
int l = 1, r = n;
while(l < r) {
int m = (l + r) >> 1;
if(query(m) >= x) r = m;
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |