# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
331784 | kshitij_sodani | Monkey and Apple-trees (IZhO12_apple) | C++14 | 72 ms | 3180 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.
//#pragma GCC optimize("Ofast,unroll-loops")
#include <bits/stdc++.h>
using namespace std;
typedef long long llo;
#define mp make_pair
#define pb push_back
#define a first
#define b second
#define endl '\n'
vector<int> tree;
vector<int> l;
vector<int> r;
vector<int> vis;
int co=0;
void update(int no,int ll,int rr,int aa,int bb){
if(vis[no]){
return;
}
if(rr<aa or ll>bb){
return;
}
if(aa<=ll and rr<=bb){
//cout<<ll<<".."<<rr<<endl;
tree[no]=rr-ll+1;
vis[no]=1;
return;
}
else{
int mid=(ll+rr)/2;
if(l[no]==-1){
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |