# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
746531 | Denkata | Hedgehog Daniyar and Algorithms (IZhO19_sortbooks) | C++14 | 871 ms | 109572 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 endl '\n'
using namespace std;
const int maxn = 1e6+3;
long long i,j,p,q,n,m,k,a[maxn],Q,b[maxn];
char s[maxn];
struct Pic
{
long long l,k,ind;
};
vector <Pic> queries[maxn];
void upd(long long p,long long val)
{
while(p>=0)
{
b[p]=max(b[p],val);
p=(p&(p+1))-1;
}
}
long long rsq(long long p)
{
long long sum = 0;
while(p<=n)
{
sum = max(sum,b[p]);
p = (p|(p+1));
}
return sum;
}
int main()
# | 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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |