# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
365860 | Kazalika | Two Dishes (JOI19_dishes) | C++14 | 7161 ms | 215868 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>
#pragma GCC optimize("Ofast, no-stack-protector, unroll-loops, fast-math")
//#pragma GCC target("sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, abm, avx, mmx, tune=native")
using namespace std;
typedef long long ll;
const int N = 1e6 + 5;
const ll inf = 1e18;
ll sgt[N << 2], add[N << 2];
void push(int t, int l, int r) {
if (add[t]) {
sgt[t] += add[t];
if (l < r) {
add[t << 1] += add[t];
add[t << 1 | 1] += add[t];
}
add[t] = 0;
}
}
void upd(int t, int l, int r, int x, ll val) {
push(t, l, r);
if (x < l || x > r)
return;
if (l == r) {
sgt[t] = max(sgt[t], val);
Compilation message (stderr)
# | 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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |