转载请注明出处,谢谢http://blog.csdn.net/ACM_cxlove?viewmode=contents by---cxlove
#include<iostream> #include<cstdio> #include<cstring> #include<algorithm> #include<vector> #include<queue> #define inf 0x3f3f3f3f #define MOD 1000000007 #define lson (step<<1) #define rson (step<<1|1) #define pb(a) push_back(a) #define mp(a,b) make_pair(a,b) #define mem(a,b) memset(a,b,sizeof(a)) #define LL long long using namespace std; const int N=100005; struct Seg_tree{ int left,right; LL lazy,sum[6]; }L[N<<2]; int n,q,a[N]; LL fac[N][6]; //fac[i][j] 表示i^j的值 LL sum[N][6]={0}; //sum[i][j] 表示1^j+2^j……+i^j的值 LL c[6][6]; //组合数 LL s[N][6]; //s[i][j]表示(1-i)^j void Init(){ for(int i=0;i<6;i++){ c[i][0]=c[i][i]=1; for(int j=1;j<i;j++) c[i][j]=(c[i-1][j]+c[i-1][j-1]); } for(int i=1;i<=n;i++){ fac[i][0]=1; sum[i][0]=i; s[i][0]=1; } for(int i=1;i<6;i++){ for(int j=1;j<=n;j++){ fac[j][i]=(fac[j][i-1]*j)%MOD; sum[j][i]=(sum[j-1][i]+fac[j][i])%MOD; s[j][i]=((s[j][i-1]*(1-j))%MOD+MOD)%MOD; } } } void push_up(int step){ for(int i=0;i<6;i++) L[step].sum[i]=(L[lson].sum[i]+L[rson].sum[i])%MOD; } void update(int step,int l,int r,int x); void push_down(int step){ if(L[step].lazy!=-1){ int l=L[step].left,r=L[step].right,m=(l+r)>>1; update(lson,l,m,L[step].lazy); update(rson,m+1,r,L[step].lazy); L[step].lazy=-1; } } void bulid(int step,int l,int r){ L[step].left=l; L[step].right=r; L[step].lazy=-1; if(l==r){ for(int i=0;i<6;i++) L[step].sum[i]=(a[l]*fac[l][i])%MOD; return ; } int m=(l+r)>>1; bulid(lson,l,m); bulid(rson,m+1,r); push_up(step); } void update(int step,int l,int r,int x){ if(L[step].left==l&&L[step].right==r){ L[step].lazy=x; for(int i=0;i<6;i++){ LL tmp=((sum[r][i]-sum[l-1][i])%MOD+MOD)%MOD; L[step].sum[i]=(tmp*x)%MOD; } return ; } push_down(step); int m=(L[step].left+L[step].right)>>1; if(r<=m) update(lson,l,r,x); else if(l>m) update(rson,l,r,x); else{ update(lson,l,m,x); update(rson,m+1,r,x); } push_up(step); } LL query(int step,int l,int r,int k){ if(L[step].left==l&&L[step].right==r) return L[step].sum[k]; int m=(L[step].left+L[step].right)>>1; push_down(step); if(r<=m) return query(lson,l,r,k); else if(l>m) return query(rson,l,r,k); else return (query(lson,l,m,k)+query(rson,m+1,r,k))%MOD; } int main(){ //freopen("input.txt","r",stdin); scanf("%d%d",&n,&q); for(int i=1;i<=n;i++) scanf("%d",&a[i]); Init(); bulid(1,1,n); while(q--){ char ope[5]; int l,r,k; scanf("%s%d%d%d",&ope,&l,&r,&k); if(ope[0]=='=') update(1,l,r,k); else{ LL ans=0; for(int i=0;i<=k;i++) ans=((((query(1,l,r,i)*c[k][i])%MOD*s[l][k-i])%MOD+ans)%MOD+MOD)%MOD; printf("%I64d\n",ans); } } return 0; }