# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1075238 | Boas | Wall (IOI14_wall) | C++17 | 2029 ms | 102400 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;
typedef vector<int> vi;
typedef vector<vi> vvi;
struct val
{
int minv = 0, maxv = 100'000;
val operator+(const val &b)
{
val a = *this, res;
res.minv = max(a.minv, b.minv);
res.maxv = min(a.maxv, b.maxv);
if (b.minv > maxv)
res.maxv = b.minv;
if (b.maxv < minv)
res.minv = b.maxv;
return res;
}
val &operator+=(const val &b)
{
minv = max(minv, b.minv);
maxv = min(maxv, b.maxv);
if (b.minv > maxv)
maxv = b.minv;
if (b.maxv < minv)
minv = b.maxv;
# | 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... |