# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
723875 | OttincaM | Hacker (BOI15_hac) | C++17 | 227 ms | 117840 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 <iostream>
#include <vector>
#include "stdio.h"
using namespace std;
#define int long long
//
// Created by Otabek Jurabekov on 4/12/22.
//
template <typename Type> struct SegTree{
int Sz;
vector <Type> t, arr;
SegTree(int _n, Type _m){
t.assign((_n + 1) * 4 + 7, _m);
Sz = _n;
}
Type com(Type F, Type S){
return max(F, S);
}
void BuildTree(int v, int l, int r, vector <Type> &Array){
arr = Array; build(v, l, 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... |