zoukankan      html  css  js  c++  java
  • Multiply game_线段树

    Problem Description
    Tired of playing computer games, alpc23 is planning to play a game on numbers. Because plus and subtraction is too easy for this gay, he wants to do some multiplication in a number sequence. After playing it a few times, he has found it is also too boring. So he plan to do a more challenge job: he wants to change several numbers in this sequence and also work out the multiplication of all the number in a subsequence of the whole sequence.
      To be a friend of this gay, you have been invented by him to play this interesting game with him. Of course, you need to work out the answers faster than him to get a free lunch, He he…

     
    Input
    The first line is the number of case T (T<=10).
      For each test case, the first line is the length of sequence n (n<=50000), the second line has n numbers, they are the initial n numbers of the sequence a1,a2, …,an, 
    Then the third line is the number of operation q (q<=50000), from the fourth line to the q+3 line are the description of the q operations. They are the one of the two forms:
    0 k1 k2; you need to work out the multiplication of the subsequence from k1 to k2, inclusive. (1<=k1<=k2<=n) 
    1 k p; the kth number of the sequence has been change to p. (1<=k<=n)
    You can assume that all the numbers before and after the replacement are no larger than 1 million.
     
    Output
    For each of the first operation, you need to output the answer of multiplication in each line, because the answer can be very large, so can only output the answer after mod 1000000007.
     
    Sample Input
    1 6 1 2 4 5 6 3 3 0 2 5 1 3 7 0 2 5
     
    Sample Output
    240 420

    【题意】给出n个数,进行m次操作,0 x y就是求x到y区间的总乘积,1 x y就是把x的位置上的数改为y

    【思路】线段树单点更新问题

    #include<iostream>
    #include<stdio.h>
    #include<queue>
    #include<string.h>
    #define mod 1000000007
    using namespace std;
    const int inf=0x7777777;
    const int N=50000+10;
    
    int n,m;
    long long int a[N];
    long long int sum[N*3];
    void build(int k,int l,int r)
    {
        sum[k]=1;
        if(l==r)
        {
            sum[k]=a[l]%mod;
            return ;
        }
        int mid=l+r>>1;
        build(k*2,l,mid);
        build(k*2+1,mid+1,r);
        sum[k]=sum[k*2]*sum[k*2+1]%mod;
    
    }
    __int64 query(int k,int l,int r,int x,int y)
    {
        __int64 res=1;
        if(x<=l&&y>=r) return sum[k];
        int mid=l+r>>1;
        if(x<=mid) res*=query(k*2,l,mid,x,y)%mod;
        if(y>mid) res*=query(k*2+1,mid+1,r,x,y)%mod;
        return res%mod;
    }
    void updata(int k,int l,int r,int x,int y)
    {
        if(l==r)
        {
            sum[k]=y%mod;
            return;
        }
        //sum[k]=sum[k]/a[x]*y;
        int mid=l+r>>1;
        if(x<=mid) updata(2*k,l,mid,x,y);
        else updata(2*k+1,mid+1,r,x,y);
        sum[k]=sum[k*2]*sum[k*2+1]%mod;
    
    }
    int main()
    {
        int t;
        scanf("%d",&t);
        while(t--)
        {
            int op,x,y;
            scanf("%d",&n);
            for(int i=1; i<=n; i++) scanf("%I64d",&a[i]);
            build(1,1,n);
            scanf("%d",&m);
            for(int i=1; i<=m; i++)
            {
                scanf("%d%d%d",&op,&x,&y);
                if(!op)
                {
                    __int64 ans=query(1,1,n,x,y);
                    printf("%I64d
    ",ans%mod);
                }
                else
                {
                    updata(1,1,n,x,y);
                }
            }
        }
        return 0;
    }
  • 相关阅读:
    hash
    C#执行Sql事务处理
    数据库的锁表
    页面的刷新 和图片的替换
    单点登录 Webservice
    js 动态调用js文件
    .net生成EXCEL
    JS : 连续滚动
    引用指定类型的对象
    对象序列化为字符串
  • 原文地址:https://www.cnblogs.com/iwantstrong/p/6035540.html
Copyright © 2011-2022 走看看