CF86D.Powerful array

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

An array of positive integers a1,a2,...,ana_{1},a_{2},...,a_{n} is given. Let us consider its arbitrary subarray al,al+1...,ara_{l},a_{l+1}...,a_{r} , where 1<=l<=r<=n1<=l<=r<=n . For every positive integer ss denote by KsK_{s} the number of occurrences of ss into the subarray. We call the power of the subarray the sum of products KsKssK_{s}·K_{s}·s for every positive integer ss . 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 tt given subarrays.

输入格式

First line contains two integers nn and tt ( 1<=n,t<=2000001<=n,t<=200000 ) — the array length and the number of queries correspondingly.

Second line contains nn positive integers aia_{i} ( 1<=ai<=1061<=a_{i}<=10^{6} ) — the elements of the array.

Next tt lines contain two positive integers ll , rr ( 1<=l<=r<=n1<=l<=r<=n ) each — the indices of the left and the right ends of the corresponding subarray.

输出格式

Output tt lines, the ii -th line of the output should contain single positive integer — the power of the ii -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).

输入输出样例

  • 输入#1

    3 2
    1 2 1
    1 2
    1 3
    

    输出#1

    3
    6
    
  • 输入#2

    8 3
    1 1 2 2 1 3 1 1
    2 7
    1 6
    2 7
    

    输出#2

    20
    20
    20
    

说明/提示

Consider the following array (see the second sample) and its [2, 7] subarray (elements of the subarray are colored):

Then K1=3K_{1}=3 , K2=2K_{2}=2 , K3=1K_{3}=1 , so the power is equal to 321+222+123=203^{2}·1+2^{2}·2+1^{2}·3=20 .

首页