# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
130504 | antimirage | Wall (IOI14_wall) | C++14 | 1108 ms | 99528 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 "wall.h"
#include <bits/stdc++.h>
using namespace std;
const int N = 2e6 + 5;
int mx[N * 4], mn[N * 4], n;
void upd (int v, int val, int t) {
if (t == 1) {
mn[v] = max(mn[v], val);
mx[v] = max(mx[v], val);
}
else {
mn[v] = min(mn[v], val);
mx[v] = min(mx[v], val);
}
}
void push (int v) {
upd(v + v, mx[v], 1);
upd(v + v, mn[v], 2);
upd(v + v + 1, mx[v], 1);
upd(v + v + 1, mn[v], 2);
mx[v] = 0;
mn[v] = 1e9;
}
void update (int l, int r, int val, int t, int v = 1, int tl = 1, int tr = n) {
if (l > tr || tl > r)
return;
# | 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... |