# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
774792 |
2023-07-06T03:28:32 Z |
adaawf |
Addk (eJOI21_addk) |
C++14 |
|
234 ms |
7428 KB |
#include <iostream>
#include <deque>
using namespace std;
long long int a[100005], d[1000005], lazy[1000005];
void push(int v, int tl, int tr) {
int mid = (tl + tr) / 2;
d[v * 2] += lazy[v] * (mid - tl + 1);
d[v * 2 + 1] += lazy[v] * (tr - mid);
lazy[v * 2] += lazy[v];
lazy[v * 2 + 1] += lazy[v];
lazy[v] = 0;
}
void update(int v, int tl, int tr, int l, int r, long long int x) {
if (l > r) return;
if (tl == l && tr == r) {
d[v] += x * (r - l + 1);
lazy[v] += x;
return;
}
push(v, tl, tr);
int mid = (tl + tr) / 2;
update(v * 2, tl, mid, l, min(r, mid), x);
update(v * 2 + 1, mid + 1, tr, max(l, mid + 1), r, x);
d[v] = d[v * 2] + d[v * 2 + 1];
}
long long int sum(int v, int tl, int tr, int l, int r) {
if (l > r) return 0;
if (tl == l && tr == r) {
return d[v];
}
push(v, tl, tr);
int mid = (tl + tr) / 2;
return sum(v * 2, tl, mid, l, min(r, mid)) + sum(v * 2 + 1, mid + 1, tr, max(l, mid + 1), r);
}
int main() {
ios::sync_with_stdio(0);
cin.tie(0); cout.tie(0);
long long int n, k, q, c = 0;
cin >> n >> k;
for (int i = 1; i <= n; i++) {
cin >> a[i];
c += a[i];
update(1, 0, n, i, n, a[i]);
}
cin >> q;
for (int jj = 0; jj < q; jj++) {
long long int w, l, r, x;
cin >> w;
if (w == 2) {
cin >> l >> r >> x;
int h = (l + x - 1), k = r - x;
cout << sum(1, 0, n, h, r) - sum(1, 0, n, l - 1, k) << '\n';
}
else {
deque<int> v, d;
for (int i = 0; i < k; i++) {
int x;
cin >> x;
v.push_back(x);
d.push_back(x);
}
d.push_back(d[0]);
d.pop_front();
for (int i = 0; i < k; i++) {
update(1, 0, n, v[i], n, a[d[i]] - a[v[i]]);
}
int h = a[v[0]];
for (int i = 0; i < k - 1; i++) {
a[v[i]] = a[d[i]];
}
a[v[k - 1]] = h;
//for (int i = 1; i <= n; i++) cout << a[i] << " ";
//cout << endl;
}
}
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
452 KB |
Output is correct |
2 |
Correct |
2 ms |
340 KB |
Output is correct |
3 |
Correct |
3 ms |
468 KB |
Output is correct |
4 |
Correct |
5 ms |
596 KB |
Output is correct |
5 |
Correct |
4 ms |
592 KB |
Output is correct |
6 |
Correct |
6 ms |
728 KB |
Output is correct |
7 |
Correct |
8 ms |
844 KB |
Output is correct |
8 |
Correct |
8 ms |
896 KB |
Output is correct |
9 |
Correct |
12 ms |
1236 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
21 ms |
2248 KB |
Output is correct |
2 |
Correct |
34 ms |
2688 KB |
Output is correct |
3 |
Correct |
50 ms |
4040 KB |
Output is correct |
4 |
Correct |
106 ms |
6692 KB |
Output is correct |
5 |
Correct |
162 ms |
7428 KB |
Output is correct |
6 |
Correct |
150 ms |
7268 KB |
Output is correct |
7 |
Correct |
117 ms |
7300 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
93 ms |
3688 KB |
Output is correct |
2 |
Correct |
131 ms |
6604 KB |
Output is correct |
3 |
Correct |
234 ms |
6472 KB |
Output is correct |
4 |
Correct |
136 ms |
7116 KB |
Output is correct |