# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
203359 | Bruteforceman | Fire (JOI20_ho_t5) | C++17 | 1100 ms | 33528 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>
using namespace std;
#define prev previous
const int maxn = 200005;
using pii = pair <int, int>;
int n;
int s[maxn];
struct query {
int l, r, t;
} Q[maxn];
vector <int> v[maxn];
int prev[maxn];
int l[maxn], r[maxn];
vector <int> g[maxn];
int sub[maxn];
long long t[maxn];
long long pred[maxn];
void eulerOrder(int x) {
static int current = 0;
l[x] = ++current;
for(int i : g[x]) {
eulerOrder(i);
pred[i] = sub[x];
sub[x] += sub[i];
}
sub[x] += 1;
r[x] = current;
}
void update(int x, long long val) {
for(int i = x; i <= n + 1; i += i & (-i)) {
t[i] += val;
}
}
long long sum(int x) {
long long ans = 0;
for(int i = x; i > 0; i -= i & (-i)) {
ans += t[i];
}
return ans;
}
int main() {
int q;
scanf("%d %d", &n, &q);
for_each(s + 1, s + n + 1, [] (int &i) { scanf("%d", &i); });
for_each(Q + 1, Q + q + 1, [&] (query &i) {
scanf("%d %d %d", &i.t, &i.l, &i.r);
v[i.r].emplace_back(i.t);
v[i.l - 1].emplace_back(i.t); });
stack <int> st;
for(int i = 1; i <= n; i++) {
while(!st.empty() && s[st.top()] < s[i]) {
st.pop();
}
prev[i] = st.empty() ? 0 : st.top();
st.push(i);
}
for(int i = 1; i <= n; i++) {
g[prev[i]].push_back(i);
}
eulerOrder(0);
map <pii, long long> res;
auto cost = [&] (int x) {
if(prev[x] == 0) return 0;
else return s[prev[x]] - s[x];
};
fill(sub, sub + n + 1, 0);
for(int i = 1; i <= n; i++) {
int cur = i;
do {
sub[cur] += 1;
cur = prev[cur];
} while (cur != 0);
for(int t : v[i]) {
long long ans = 0;
for(int k = 1; k <= i; k++) {
// cout << sub[k] << " \n"[k == i];
int var = t - pred[k];
var = max(0, var);
var = min(sub[k], var);
ans += 1LL * cost(k) * var;
ans += s[k];
// cout << k << ' ' << var << endl;
}
res[pii(i, t)] = ans;
// cout << i << ' ' << t << ' ' << ans << endl;
}
}
for_each(Q + 1, Q + q + 1, [&] (query i) {
printf("%lld\n", res[pii(i.r, i.t)] - res[pii(i.l - 1, i.t)]); });
return 0;
}
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... |