# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
203376 | 2020-02-20T12:06:15 Z | Bruteforceman | Fire (JOI20_ho_t5) | C++11 | 1000 ms | 46828 KB |
#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 pred[maxn]; vector <pii> h[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; } struct BinaryIndexedTree { long long t[maxn]; int size; void update(int x, long long val) { x += 1; for(int i = x; i <= size + 1; i += i & (-i)) { t[i] += val; } } long long sum(int x) { x = min(x, size); x += 1; long long ans = 0; for(int i = x; i > 0; i -= i & (-i)) { ans += t[i]; } return ans; } long long sum(int l, int r) { if(l > r) return 0; return sum(r) - sum(l - 1); } }; 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]; }; BinaryIndexedTree A, B, C, D; A.size = B.size = C.size = D.size = n; vector <int> rmq;; for(int i = 1; i <= n; i++) { while(!rmq.empty() && s[rmq.back()] < s[i]) { rmq.pop_back(); } rmq.push_back(i); for(int t : v[i]) { int last = *lower_bound(rmq.begin(), rmq.end(), i - t); long long ans = 1LL * s[last] * (i - last); for(int k = 1; k <= last; k++) { ans += s[k]; } h[last].emplace_back(i, t); res[pii(i, t)] += ans; } } for(int i = 1; i <= n; i++) { int k = i; A.update(pred[k], 1LL * cost(k) * pred[i]); B.update(pred[k], 1LL * cost(k)); C.update(pred[k] + sub[k], 1LL * cost(k) * (sub[k] + pred[k])); D.update(pred[k] + sub[k], 1LL * cost(k)); for(auto j : h[i]) { int t = j.second; res[j] += B.sum(t) * t - A.sum(t); res[j] += C.sum(t) - D.sum(t) * t; } } 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
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 14 ms | 14456 KB | Output is correct |
2 | Correct | 13 ms | 14456 KB | Output is correct |
3 | Incorrect | 13 ms | 14584 KB | Output isn't correct |
4 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 14 ms | 14456 KB | Output is correct |
2 | Execution timed out | 1096 ms | 33652 KB | Time limit exceeded |
3 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 14 ms | 14456 KB | Output is correct |
2 | Execution timed out | 1094 ms | 37488 KB | Time limit exceeded |
3 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Execution timed out | 1091 ms | 46828 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 14 ms | 14456 KB | Output is correct |
2 | Correct | 13 ms | 14456 KB | Output is correct |
3 | Incorrect | 13 ms | 14584 KB | Output isn't correct |
4 | Halted | 0 ms | 0 KB | - |