0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-11-27 16:36:28 +00:00
Baoshuo Ren 2022-06-12 22:48:16 +08:00
parent 5f455c9296
commit 83061a6978
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

38
Codeforces/1697/B/B.cpp Normal file
View File

@ -0,0 +1,38 @@
#include <iostream>
#include <algorithm>
using std::cin;
using std::cout;
const char endl = '\n';
const int N = 2e5 + 5;
int n, q, p[N];
long long s[N];
int main() {
std::ios::sync_with_stdio(false);
cin.tie(nullptr);
cin >> n >> q;
for (int i = 1; i <= n; i++) {
cin >> p[i];
}
std::sort(p + 1, p + 1 + n, std::greater<int>());
for (int i = 1; i <= n; i++) {
s[i] = s[i - 1] + p[i];
}
while (q--) {
int x, y;
cin >> x >> y;
cout << s[x] - s[x - y] << endl;
}
return 0;
}