1663.Powerful array

Time Limit: 1s Memory Limit: 256MB

An array of positive integers a1,a2,...,an is given. Let us consider its arbitrary subarray al,al+1...,ar, where 1 \le l \le r \le n. For every positive integer s denote by Ks the number of occurrences of s into the subarray. We call the power of the subarray the sum of products Ks \cdot Ks \cdot s for every positive integer s. The sum contains only finite number of nonzero summands as the number of different values in the array is indeed finite.

You should calculate the power of t given subarrays.

Input Format(From the terminal/stdin)

First line contains two integers n and t (1 \le n,t \le 200000) - the array length and the number of queries correspondingly.

Second line contains n positive integers ai (1 \le ai \le 106) - the elements of the array.

Next t lines contain two positive integers l, r (1 \le l \le r \le n) each - the indices of the left and the right ends of the corresponding subarray.

Output Format(To the terminal/stdout)

Output t lines, the i-th line of the output should contain single positive integer - the power of the i-th query subarray.

Please, do not use %lld specificator to read or write 64-bit integers in C++. It is preferred to use cout stream (also you may use %I64d).

Sample Input 1

Copy
3 2
1 2 1
1 2
1 3
 · \n
 · · \n
 · \n
 · \n

Sample Output 1

Copy
3
6
 \n
 \n

Sample Input 2

Copy
8 3
1 1 2 2 1 3 1 1
2 7
1 6
2 7
 · \n
 · · · · · · · \n
 · \n
 · \n
 · \n

Sample Output 2

Copy
20
20
20
  \n
  \n
  \n

Hints

Consider the following array (see the second sample) and its [2, 7] subarray (elements of the subarray are colored):
1663_1.png Then K1=3, K2=2, K3=1, so the power is equal to 32 \cdot 1+22 \cdot 2+12 \cdot 3=20.

Submit

请先 登录

© 2025 FAQs