#P16521. [GKS 2015 #E] Sums of Sums

    ID: 16498 Type: RemoteJudge 1000ms 1024MiB Tried: 0 Accepted: 0 Difficulty: 6 Uploaded By: Tags>2015二分前缀和双指针 two-pointerGoogle Kick Start

[GKS 2015 #E] Sums of Sums

题目描述

Alice presented her friend Bob with an array of NN positive integers, indexed from 11 to NN. She challenged Bob with many queries of the form "what is the sum of the numbers between these two indexes?" But Bob was able to solve the problem too easily.

Alice took her array and found all N×(N+1)/2N\times (N+1)/2 non-empty subarrays of it. She found the sum of each subarray, and then sorted those values (in nondecreasing order) to create a new array, indexed from 11 to N×(N+1)/2N\times (N+1)/2. For example, for an initial array [2,3,2][2, 3, 2], Alice would generate the subarrays [2],[3],[2],[2,3],[3,2][2], [3], [2], [2, 3], [3, 2], and [2,3,2][2, 3, 2] (note that [2,2][2, 2], for example, is NOT a subarray). Then she'd take the sums -- 2,3,2,5,5,72, 3, 2, 5, 5, 7 -- and sort them to get a new array of [2,2,3,5,5,7][2, 2, 3, 5, 5, 7].

Alice has given the initial array to Bob, along with QQ queries of the form "what is the sum of the numbers from index LiL_i to RiR_i, inclusive, in the new array?" Now Bob's in trouble! Can you help him out?

输入格式

The first line of the input gives the number of test cases, TT. TT test cases follow. Each test case begins with one line with two space-separated integers NN and QQ, denoting the number of elements in the initial array and the number of Alice's queries. Then, there is one line with NN space-separated integers, denoting the elements of Alice's initial array. Finally, there are QQ more lines with two space-separated integers each: LiL_i and RiR_i, the inclusive index bounds for the i-th query.

输出格式

For each test case, output one line with Case #x:, where xx is the test case number (starting from 11). Then output QQ more lines, each with one integer, representing the answers to the queries (in the order they were asked).

1
5 5
5 4 3 2 1
1 1
1 10
1 15
3 8
4 11
Case #1:
1
45
105
26
48

提示

In sample case #1, Alice's new array would be: [1,2,3,3,4,5,5,6,7,9,9,10,12,14,15][1, 2, 3, 3, 4, 5, 5, 6, 7, 9, 9, 10, 12, 14, 15].

Limits

1T101 \le T \le 10.
1Q201 \le Q \le 20.
$1 \le \text{each element of the initial array} \le 100$.
1LiRiN×(N+1)/21 \le L_i \le R_i \le N\times (N+1)/2.

Small dataset (Test Set 1 - Visible)

1N1031 \le N \le 10^3.

Large dataset (Test Set 2 - Hidden)

1N2000001 \le N \le 200000.