# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
632442 |
2022-08-20T04:31:27 Z |
pragmatist |
Addk (eJOI21_addk) |
C++17 |
|
1598 ms |
1372 KB |
#include<bits/stdc++.h>
#define ll long long
#define nl "\n"
using namespace std;
const int N = (int)1e5 + 7;
int n, k, q, a[N];
int main() {
ios_base::sync_with_stdio(NULL);
cin.tie(0);
cout.tie(0);
cin >> n >> k;
for(int i = 1; i <= n; ++i) cin >> a[i];
cin >> q;
while(q--) {
char tp;
cin >> tp;
if(tp == '1') {
vector<int> v(k);
for(auto &x : v) cin >> x;
int o = a[v[0]];
for(int i = 0; i < k - 1; ++i) a[v[i]] = a[v[i + 1]];
a[v.back()] = o;
} else {
int l, r, m;
cin >> l >> r >> m;
ll ans = 0;
for(int i = l; i <= r; ++i) {
ans += a[i] * min({i - l + 1, m, r - i + 1});
}
cout << ans << nl;
}
}
return 0;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
212 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
380 ms |
532 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1598 ms |
1372 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |