博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
浙江省第十二届省赛 Beauty of Array(思维题)
阅读量:5107 次
发布时间:2019-06-13

本文共 2380 字,大约阅读时间需要 7 分钟。

Description

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 T indicating 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

351 2 3 4 532 3 342 3 3 2

Sample Output

1052138

题意:

定义Beauty数是一个序列里所有不相同的数的和,求一个序列所有字序列的Beauty和

题解:

按先后顺序将每个元素加入队列 然后计算

例:如果array【1,2,3】

1:    1              dp = 1;

2:    1 2

          2          dp = 1+2*2;

3:    1 2 3

     2 3

     3    dp = 5+3*3;

一个不错的解释:

如果要求的是一段序列中连续子序列的个数,那么如果定义d[i]为以i结尾的连续子序列的个数,d[i]=d[i-1]+1;我们定义d[i]为以i结尾的连续子序列的和,那么如果不重复d[i]=d[i-1]+a*i;,如果重复的话,假设1 2 3  4 5 6 7。。。。。i,如果在第j位,那么(i i-1),(i,i-2),(i,i-3)。。。。(i,j+1)这些连续子序列的值可以加上a的值;(i,j),(i,j-1),(i,j-2),(i,1),这些值都会包含重复的i,j位置上的值,因为只需要算一次,所以不需要给这些以i结尾的子序列加上a,这些子序列的个数,总共有j个,所以我们只需要用一个数组A标记上A[a]=i;那么d[i]=d[i-1]+a+(i-1-A[a])*a;如果a之前没有出现过,那么A[a]等于0;如果a之前出现过,减去包含重复值的子序列的个数,也就是A[a]。

代码:

#include 
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
using namespace std;#define is_lower(c) (c>='a' && c<='z')#define is_upper(c) (c>='A' && c<='Z')#define is_alpha(c) (is_lower(c) || is_upper(c))#define is_digit(c) (c>='0' && c<='9')#define min(a,b) ((a)<(b)?(a):(b))#define max(a,b) ((a)>(b)?(a):(b))#define IO ios::sync_with_stdio(0);\ cin.tie(0);\ cout.tie(0);#define For(i,a,b) for(int i = a; i <= b; i++)typedef long long ll;typedef unsigned long long ull;typedef pair
pii;typedef pair
pll;typedef vector
vi;const ll inf=0x3f3f3f3f;const double EPS=1e-10;const ll inf_ll=(ll)1e18;const ll maxn=100005LL;const ll mod=1000000007LL;const int N = 1000000+5;int ans [N];int main(){ IO int T; cin>>T; while(T--) { int n; memset(ans,0,sizeof(ans)); cin>>n; int m = 0; ll res = 0,dp = 0; For(i,1,n){ int x; cin>>x; dp += x*(i-ans[x]); res += dp; ans[x] = i; } cout<
<

 

转载于:https://www.cnblogs.com/GHzz/p/8597221.html

你可能感兴趣的文章
【转】 FPGA设计的四种常用思想与技巧
查看>>
EntityFrameWork 实现实体类和DBContext分离在不同类库
查看>>
新手算法学习之路----二叉树(在一个二叉查找树中插入一个节点)
查看>>
autopep8
查看>>
GIT在Linux上的安装和使用简介
查看>>
基于C#编程语言的Mysql常用操作
查看>>
s3c2440实验---定时器
查看>>
MyEclipse10安装SVN插件
查看>>
[转]: 视图和表的区别和联系
查看>>
Regular Experssion
查看>>
图论例题1——NOIP2015信息传递
查看>>
uCOS-II中的任务切换-图解多种任务调度时机与问题
查看>>
CocoaPods的安装和使用那些事(Xcode 7.2,iOS 9.2,Swift)
查看>>
Android 官方新手指导教程
查看>>
幸运转盘v1.0 【附视频】我的Android原创处女作,请支持!
查看>>
UseIIS
查看>>
集合体系
查看>>
vi命令提示:Terminal too wide
查看>>
引用 移植Linux到s3c2410上
查看>>
人与人之间的差距是从大学开始的
查看>>