# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
519070 | tabr | Wall (IOI14_wall) | C++17 | 0 ms | 0 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;
#ifdef tabr
#include "library/debug.cpp"
#else
#define debug(...)
#endif
#ifndef tabr
#include "wall.h"
#endif
const int inf = (int) 1e9;
struct segtree {
using T = int;
using F = pair<int, int>;
int n;
int size;
int log_size;
vector<T> node;
vector<F> lazy;
T e() {
return 0;
}
F id() {
return make_pair(-inf, inf);
}