HDU5419Victor and Toys(樹狀陣列+數學期望)
題目連結:傳送門
題意&分析轉自BESTCODER:
首先分母就是
C(m,3),考慮如何計算分子。
注意到期望的獨立性,我們可以首先用O(n+m)的時間利用差分字首和預處理出每個點被幾個區間覆蓋,假設第i個點被si個區間所覆蓋,那麼第i個點對分子的貢獻即為wi×C(si,3),注意不要爆long long。
我用樹狀陣列統計了每個點被覆蓋的的次數剩下的就按照題解的搞
樹狀陣列幾種常見的用法的分類傳送門
程式碼如下:
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <iostream>
using namespace std;
const int maxn = 1e5+10;
typedef long long LL;
LL sum[maxn];
int a[maxn];
void init(){
memset(sum,0,sizeof(sum));
}
int lowbit(int x){
return x&(-x);
}
LL n,m;
void update(int pos,int val){
while(pos>0){
sum[pos]+=val;
pos-=lowbit(pos);
}
}
LL get(int pos){
LL ans = 0;
while(pos<=n){
ans = ans+sum[pos];
pos+=lowbit(pos);
}
return ans;
}
LL gcd(LL a,LL b){
if(b) return gcd(b,a%b);
return a;
}
int main()
{
int t;
scanf("%d",&t);
while(t--){
init();
scanf("%I64d%I64d",&n,&m);
for(int i=1;i<=n;i++) scanf("%d",a+i);
for(int i=0;i<m;i++){
int l,r;
scanf("%d%d",&l,&r);
update(r,1);
update(l-1,-1);
}
LL tot = 0;
for(int i=1;i<=n;i++){
LL tmp = get(i);
if(tmp>=2)
tot=tot+tmp*(tmp-1)*(tmp-2)/6*(LL)a[i];
}
LL tt = (LL)m*(LL)(m-1)*(LL)(m-2)/6;
LL tmp = gcd(tot,tt);
if(tmp==0){
puts("0");
continue;
}
if(tt==tmp) printf("%I64d\n",tot/tmp);
else printf("%I64d/%I64d\n",tot/tmp,tt/tmp);
}
return 0;
}
相關文章
- D 區間求和 [數學 樹狀陣列]陣列
- 樹狀陣列陣列
- 學習筆記----樹狀陣列筆記陣列
- 解析樹狀陣列陣列
- 樹狀陣列詳解陣列
- 樹狀陣列基礎陣列
- poj 2481 樹狀陣列陣列
- hdu 3874 樹狀陣列陣列
- 二維樹狀陣列陣列
- SPOJ DQUERY (離線數狀陣列||線上主席樹)陣列
- 求區間不同數的個數【樹狀陣列求解】陣列
- 樹狀陣列模板題 & (樹狀陣列 1:單點修改,區間查詢)陣列
- 樹狀陣列和逆序對陣列
- hdu 5147 樹狀陣列陣列
- 樹狀陣列快速入門陣列
- 【筆記/模板】樹狀陣列筆記陣列
- POJ 3067-Japan(樹狀陣列-逆序數)陣列
- HDU2689 Sort it (樹狀陣列求逆序數)陣列
- 樹狀陣列模板+習題集陣列
- 樹狀陣列3種基本操作陣列
- 樹狀陣列upc1976陣列
- CSU 4441 Necklace (樹狀陣列/LIS)陣列
- 樹狀陣列(我是真小白)陣列
- 資料結構——樹狀陣列資料結構陣列
- HDU 1394 Minimum Inversion Number (樹狀陣列求逆序數)陣列
- [php]運用變數引用實現一維陣列轉多維樹狀陣列PHP變數陣列
- 線段樹+差分——【模板】樹狀陣列2陣列
- hdu 4836 The Query on the Tree(線段樹or樹狀陣列)陣列
- 10:Challenge 3(樹狀陣列直接修改)陣列
- POJ 3928 Ping pong(樹狀陣列)陣列
- POJ 2299-Ultra-QuickSort(樹狀陣列求逆序數)UI陣列
- HDU 1556 Color the ball(線段樹|樹狀陣列)陣列
- CF 293 E Close Vertices (樹的分治+樹狀陣列)陣列
- HDU 1166 敵兵佈陣 (樹狀陣列)陣列
- HDU 1166 敵兵佈陣(樹狀陣列)陣列
- POJ-2352 Stars(樹狀陣列)陣列
- 【luogu3368】模板 樹狀陣列 2陣列
- 【二維樹狀陣列】poj 2155 Matrix陣列