Edward has an array A with N integers. He defines the beauty of an array as the summation of all distinct integers in the array. Now Edward wants to know the summation of the beauty of all contiguous subarray of the array A.

Input

There are multiple test cases. The first line of input contains an integer Tindicating the number of test cases. For each test case:

The first line contains an integer N (1 <= N <= 100000), which indicates the size of the array. The next line contains N positive integers separated by spaces. Every integer is no larger than 1000000.

Output

For each case, print the answer in one line.

Sample Input

3
5
1 2 3 4 5
3
2 3 3
4
2 3 3 2

Sample Output

105
21
38 题意就是给你一个数组,让你求1~1,1~2,1~3,1~4.... 1~n,
               2~2,2~3, 2~4.... 2~n
                 ....................
                      n-1~n-1 n-1~n
                           n~n
这些区间内不同数字的和,然后求总和。 思路:就是从右往左遍历,找某个数右边第一次出现这个数的位置,如果是第一次出现那么这个位置就是n
然后加加乘乘就行了 代码如下:
 #include<iostream>
#include<cstdio>
#include<cstring>
using namespace std;
const int N=1e6+;
const int NN=1e5+;
int pos[N],a[NN];
int main()
{
int t;
int n;
scanf("%d",&t);
long long ans,tans;
while(t--)
{
scanf("%d",&n);
for(int i=;i<n;i++)
{
scanf("%d",&a[i]);
pos[a[i]]=-;//标记每个数都没出现过
}
ans=,tans=;
for(int i=n-;i>=;i--)
{
if(pos[a[i]]==-)
tans+=a[i]*(n-i);
else
tans+=a[i]*(pos[a[i]]-i);
pos[a[i]]=i;
ans+=tans;
}
printf("%lld\n",ans);
}
return ;
}

最新文章

  1. 366. Find Leaves of Binary Tree
  2. sql中 in , not in , exists , not exists效率分析
  3. osg中遇到的问题
  4. python3使用csv模块读写csv文件
  5. 10个很有用的高级Git命令
  6. (转)国内外三个不同领域巨头分享的Redis实战经验及使用场景
  7. 使用Zxing实现扫二维码描
  8. IOS GCD 使用(三)单例模式
  9. ASP.NET性能优化之分布式Session
  10. Android Support库百分比布局
  11. 百度词典搜索_dress code
  12. leetcode day5
  13. C# 7.0 特性
  14. LeetCode 单链表专题 (一)
  15. 金融量化分析【day112】:量化平台的使用-下单函数
  16. 「luogu1417」烹调方案
  17. [jzoj]2938.【NOIP2012模拟8.9】分割田地
  18. django 缓存信号等
  19. 机器学习基础一(TP,TN,FP,FN等)
  20. JavaScript之简易http接口测试工具网页版

热门文章

  1. LeetCode 125. Valid Palindorme (验证回文字符串)
  2. Linux下的画图软件
  3. android音乐播放器开发 SweetMusicPlayer 智能匹配本地歌词
  4. [LeedCode OJ]#63 Unique Paths II
  5. mp3播放时间
  6. ASP.NET Overview
  7. Javascript中的Object对象
  8. E20170709-hm
  9. THE DRUNK JAILER
  10. jquery模拟下拉框