mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-09 02:18:51 +00:00
39 lines
568 B
C++
39 lines
568 B
C++
#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;
|
|
}
|