CF 86D Powerful array

D. Powerful array
time limit per test
5 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

An array of positive integers a1, a2, ..., an is given. Let us consider its arbitrary subarray al, al + 1..., ar, where 1 ≤ l ≤ r ≤ 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 productsKs·Ks·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

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

Second line contains n positive integers ai (1 ≤ ai ≤ 106) — the elements of the array.

Next t lines contain two positive integers lr (1 ≤ l ≤ r ≤ n) each — the indices of the left and the right ends of the corresponding subarray.

Output

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 test(s)
input
3 2
1 2 1
1 2
1 3
output
3
6
input
8 3
1 1 2 2 1 3 1 1
2 7
1 6
2 7
output
20
20
20
Note

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

Then  K1 = 3K2 = 2K3 = 1, so the power is equal to  32·1 + 22·2 + 12·3 = 20.

题意: 有N个数, t个询问。 每次输出  区间的    每个数字出现的次数^ 2 * 该数字 的总和。
思路: 莫队算法
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <cmath>
using namespace std;

// n * n * a - x = (n - 1) * (n - 1) * a; ->  x = (2 * n - 1) * a;
// n * n * a + x = (n + 1) * (n + 1) * a; ->  x = (2 * n + 1) * a;

const int V = 200000 + 50;
const int MaxN = 1000000 + 50;
const int mod = 1000000000 + 7;
struct node {
    int id, l, r;
};
node nod[V];
int n, t, num[V], L, R, sum[MaxN];
__int64 ans[V], now;
bool cmp(node a, node b) {
    int m = (int) sqrt(n);
    if(a.l / m != b.l / m)
        return a.l < b.l;
    return a.r < b.r;
}
void f(int l, int r) {
    while(L < l) {
        now -= num[L] * (2 * sum[num[L]]-- - 1);
        L++;
    }
    while(R > r) {
        now -= num[R] * (2 * sum[num[R]]-- - 1);
        R--;
    }
    while(L > l) {
        L--;
        now += num[L] * (2 * sum[num[L]]++ + 1);
    }
    while(R < r) {
        R++;
        now += num[R] * (2 * sum[num[R]]++ + 1);
    }
}
void Modui() {
    now = L = R = 0;
    for(int i = 0; i < t; ++i) {
        f(nod[i].l, nod[i].r);
        ans[nod[i].id] = now;
    }
}
int main() {
    int i, j;
    scanf("%d%d", &n, &t);
    for(i = 1; i <= n; ++i)
        scanf("%d", &num[i]);
    for(i = 0; i < t; ++i) {
        int l, r;
        nod[i].id = i;
        scanf("%d%d", &nod[i].l, &nod[i].r);
    }
    sort(nod, nod + t, cmp);
    Modui();
    for(i = 0; i < t; ++i)
        printf("%I64d\n", ans[i]);
}


1、资源项目源码均已通过严格测试验证,保证能够正常运行; 2、项目问题、技术讨论,可以给博主私信或留言,博主看到后会第一时间与您进行沟通; 3、本项目比较适合计算机领域相关的毕业设计课题、课程作业等使用,尤其对于人工智能、计算机科学与技术等相关专业,更为适合; 4、下载使用后,可先查看README.md或论文文件(如有),本项目仅用作交流学习参考,请切勿用于商业用途。 5、资源来自互联网采集,如有侵权,私聊博主删除。 6、可私信博主看论文后选择购买源代码。 1、资源项目源码均已通过严格测试验证,保证能够正常运行; 2、项目问题、技术讨论,可以给博主私信或留言,博主看到后会第一时间与您进行沟通; 3、本项目比较适合计算机领域相关的毕业设计课题、课程作业等使用,尤其对于人工智能、计算机科学与技术等相关专业,更为适合; 4、下载使用后,可先查看README.md或论文文件(如有),本项目仅用作交流学习参考,请切勿用于商业用途。 5、资源来自互联网采集,如有侵权,私聊博主删除。 6、可私信博主看论文后选择购买源代码。 1、资源项目源码均已通过严格测试验证,保证能够正常运行; 2、项目问题、技术讨论,可以给博主私信或留言,博主看到后会第一时间与您进行沟通; 3、本项目比较适合计算机领域相关的毕业设计课题、课程作业等使用,尤其对于人工智能、计算机科学与技术等相关专业,更为适合; 4、下载使用后,可先查看README.md或论文文件(如有),本项目仅用作交流学习参考,请切勿用于商业用途。 5、资源来自互联网采集,如有侵权,私聊博主删除。 6、可私信博主看论文后选择购买源代码。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值