# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
164451 | kostia244 | Wall (IOI14_wall) | C++17 | 3064 ms | 118008 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>
#define all(x) x.begin(), x.end()
#define pb push_back
using namespace std;
struct node {
int mn = 2e9, mx = 0, ord = 1;
void push(int x, int a) {
if (a == 1) { //mn
ord = 1;
mn = min(mn, x);
mx = min(mx, mn);
} else {
ord = 0;
mx = max(mx, x);
mn = max(mn, mx);
}
}
int eval() {
if (ord == 0) {
if(mn == 2e9) mn = 0;
return max(mn, mx);
}
return min(mn, mx);
}
};
node merge(node a, node b) {
if (b.ord == 1) {
a.push(b.mx, 0);
# | 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... |