# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
124351 | Adhyyan1252 | Tenis (COI19_tenis) | C++11 | 482 ms | 13380 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;
//let ai hold the size of union of prefix
//find minimum ai - i
//update the prefix
#define INF 1e7
struct segtree{
vector<int> t,l;
int sz;
segtree(int size){
sz = size;
t = vector<int>(sz*4, 0);
l = vector<int>(sz*4, 0);
}
void prop(int i, int s, int e){
if(l[i] == 0) return;
t[i] += l[i];
if(s != e){
l[i*2] += l[i];
l[i*2+1] += l[i];
}
l[i] = 0;
}
int query(int i, int s, int e, int l, int r){
# | 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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |