MYF

HDU 5086 Revenge of Segment Tree

题目链接

HDU 5086

题目类型:机智题

题目来源:BestCoder #16

题目分析

题目大意

线段树的复仇。

给出线段树上的n个点的值,计算所有区间的区间值之和。

解析

枚举每一个点,可以发现,对于这个点所在的区间,共有(i)*(n-i+1)种情况,即左边的数共有(i-1)个,可以取0~i-1共计i种情况。注意乘法的时候数据会爆范围。

代码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#include <set>
#include <map>
#include <stack>
#include <cmath>
#include <queue>
#include <cstdio>
#include <string>
#include <vector>
#include <iomanip>
#include <bitset>
#include <cstring>
#include <iostream>
#include <deque>
#include <algorithm>
#define Memset(a,val) memset(a,val,sizeof(a))
#define PI acos(-1)
#define PB push_back
#define MP make_pair
#define rt(n) (i == n ? '\n' : ' ')
#define hi printf("Hi----------\n")
#define IN freopen("input.txt","r",stdin);
#define OUT freopen("output.txt","w",stdout);
#define debug(x) cout<<"Debug : ---"<<x<<"---"<<endl;
#pragma comment(linker, "/STACK:1024000000,1024000000")
using namespace std;
typedef pair<int,int> PII;
typedef long long ll;
const int maxn=100000+5;
const int mod=1000000007;
const int INF=0x3f3f3f3f;
const double eps=1e-8;
void work(){
int n;
scanf("%d",&n);
ll ans=0,tmp;
for (int i=1; i<=n; i++) {
scanf("%lld",&tmp);
ans+=tmp*(n-i+1)%mod*i%mod;
ans%=mod;
}
cout<<ans<<endl;
}
int main(){
int t;
scanf("%d",&t);
while (t--) {
work();
}
return 0;
}