# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
520375 | Alex_tz307 | Osumnjičeni (COCI21_osumnjiceni) | C++17 | 655 ms | 39612 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>
#define INF 0x3f3f3f3f
using namespace std;
struct node {
int val, lazy;
};
void minSelf(int &x, const int &y) {
if (y < x) {
x = y;
}
}
struct ST {
vector<node> t;
ST(int n) {
int dim = 1;
while (dim < n) {
dim <<= 1;
}
t.resize(dim << 1, {INF, INF});
}
void push(int x) {
if (t[x].lazy == INF) {
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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |