题目: 传送门
题解:线段树模板题目。
对递归的题目始终理解不好,我的痛啊,在水的题目都要写很长时间。
#include <iostream>
#include <string.h>
#include <stdio.h>
#include <algorithm>
typedef __int64 ll;
#define inf 0x3f3f3f3f
#include <math.h>
#include <queue>
#define mod 1000000007
#define N 50010
using namespace std;
int n,m;
struct node
{
int l,r;
ll w;
}q[4*N];
void pushup(int rt)
{
q[rt].w=(q[rt<<1].w*q[rt<<1|1].w)%mod;
}
void build(int l,int r,int rt)
{
q[rt].l=l;
q[rt].r=r;
q[rt].w=0;
if(l==r)
{
scanf("%I64d",&q[rt].w);
return ;
}
int mid=(l+r)>>1;
build(l,mid,rt<<1);
build(mid+1,r,rt<<1|1);
pushup(rt);
return ;
}
void update(int lf,int key,int l,int r,int rt)
{
if(l==r&&lf==l)
{
q[rt].w=key;
return ;
}
int mid=(l+r)>>1;
if(lf<=mid) update(lf,key,l,mid,rt<<1);
else update(lf,key,mid+1,r,rt<<1|1);
pushup(rt);
return ;
}
ll query(int lf,int rf,int l,int r,int rt)
{
if(lf<=l&&rf>=r)
{
return q[rt].w;
}
ll L=1;//区别于全局变量
int mid=(l+r)>>1;
if(lf<=mid) L=(L*query(lf,rf,l,mid,rt<<1))%mod;
if(rf>mid) L=(L*query(lf,rf,mid+1,r,rt<<1|1))%mod;
return L;
}
int main()
{
int T,se,xx,yy;
scanf("%d",&T);
while (T--)
{
scanf("%d",&n);
build(1,n,1);
scanf("%d",&m);
for(int i=0;i<m;i++)
{
scanf("%d%d%d",&se,&xx,&yy);
if(se==0)
{
ll tt=query(xx,yy,1,n,1);
printf("%I64d\n",tt%mod);
}
else if(se==1)
{
update(xx,yy,1,n,1);
}
}
}
return 0;
}
- 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.
- 51.
- 52.
- 53.
- 54.
- 55.
- 56.
- 57.
- 58.
- 59.
- 60.
- 61.
- 62.
- 63.
- 64.
- 65.
- 66.
- 67.
- 68.
- 69.
- 70.
- 71.
- 72.
- 73.
- 74.
- 75.
- 76.
- 77.
- 78.
- 79.
- 80.
- 81.
- 82.
- 83.
- 84.
- 85.
- 86.
- 87.