# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
164996 | shashwatchandra | Monkey and Apple-trees (IZhO12_apple) | C++14 | 787 ms | 262144 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.
/*input
6
2 1 7
2 10 12
1 7 11
2 11 13
1 8 10
1 15 17
*/
#include <iostream>
using namespace std;
struct node{
node* left,*right;
int cnt;
bool lazy = 0;
node(){
cnt = 0;
lazy = 0;
left = NULL;
right = NULL;
}
void extend(){
left = new node();
right = new node();
}
};
node* root = new node();
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |