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.
InputFirst 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 l, r (1 ≤ l ≤ r ≤ n) each — the indices of the left and the right ends of the corresponding subarray.
OutputOutput 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).
Examplesinput3 21 2 11 21 3output36input8 31 1 2 2 1 3 1 12 71 62 7output202020NoteConsider the following array (see the second sample) and its [2, 7] subarray (elements of the subarray are colored):
Then K1 = 3, K2 = 2, K3 = 1, so the power is equal to 32·1 + 22·2 + 12·3 = 20.题解:莫队 #include<iostream>#include<cstdio>#include<cstring>#include<algorithm>#include<cmath>#define N 200003#define LL long longusing namespace std;int n,m,a[N],belong[N],cnt[1000003];struct data{ int l,r,id;}q[N];LL as[N],ans;int cmp(data a,data b){ return belong[a.l]<belong[b.l]||belong[a.l]==belong[b.l]&&a.r<b.r;}void change(int pos,int val){ int t=a[pos]; ans-=(LL)cnt[t]*cnt[t]*a[pos]; cnt[t]+=val; ans+=(LL)cnt[t]*cnt[t]*a[pos];}int main(){ freopen("a.in","r",stdin); scanf("%d%d",&n,&m); for (int i=1;i<=n;i++) scanf("%d",&a[i]); int block=600; for (int i=1;i<=n;i++) belong[i]=(i-1)/block+1; for (int i=1;i<=m;i++) scanf("%d%d",&q[i].l,&q[i].r),q[i].id=i; sort(q+1,q+m+1,cmp); ans=0; int l=1,r=1; change(1,1); for (int i=1;i<=m;i++) { while (q[i].l<l) change(--l,1); while (q[i].l>l) change(l++,-1); while (q[i].r>r) change(++r,1); while (q[i].r<r) change(r--,-1); as[q[i].id]=ans; } for (int i=1;i<=m;i++) printf("%I64d/n",as[i]);}
新闻热点
疑难解答