1. 程式人生 > >牛客網暑期ACM多校訓練營(第十場)A(Rikka with Lowbit)

牛客網暑期ACM多校訓練營(第十場)A(Rikka with Lowbit)


題目描述

Today, Rikka is going to learn how to use BIT to solve some simple data structure tasks. While studying, She finds there is a magic expression in the template of BIT. After searching for some literature, Rikka realizes it is the implementation of the function .

is defined on all positive integers. Let a1...am be the binary representation of x while a1 is the least significant digit, k be the smallest index which satisfies ak = 1. The value of

is equal to 2k-1.

After getting some interesting properties of , Rikka sets a simple data structure task for you:

At first, Rikka defines an operator f(x), it takes a non-negative integer x. If x is equal to 0, it will return 0. Otherwise it will return or , each with the probability of .

Then, Rikka shows a positive integer array A of length n, and she makes m operations on it.

There are two types of operations:
1. 1 L R, for each index i ∈ [L,R], change Ai to f(Ai).
2. 2 L R, query for the expectation value of
. (You may assume that each time Rikka calls f, the random variable used by f is independent with others.)

輸入描述:

The first line contains a single integer t(1 ≤ t ≤ 3), the number of the testcases.

The first line of each testcase contains two integers n,m(1 ≤ n,m ≤ 105). The second line contains n integers Ai(1 ≤ Ai ≤ 108). 

And then m lines follow, each line contains three integers t,L,R(t ∈ {1,2}, 1 ≤ L ≤ R ≤ n).

輸出描述:

For each query, let w be the expectation value of the interval sum, you need to output . 

It is easy to find that w x 2nm must be an integer.

輸入

1
3 6
1 2 3
1 3 3
2 1 3
1 3 3
2 1 3
1 1 3
2 1 3

輸出

1572864
1572864
1572864

題意:(簽到題)給出一個數組,兩種操作。

1,修改一個區間的數,如果a[i]=0,a[i]=0。否則有1/2機率變為a[i]+lowbit(a[i]),有1/2機率變為a[i]-lowbit(a[i])。

2,求區間期望和。

思路:因為是求期望所以每一個點上的數期望為(1/2)*(x+lowbit(x))+(1/2)*(x-lowbit(x))=x,期望相當於沒變,那麼題意也就轉化成了只求最初的陣列區間和了。(水題)

程式碼:

#include<bits/stdc++.h>
#define PI acos(-1)
#define ll long long
#define inf 0x3f3f3f3f
#define ull unsigned long long
using namespace std;
const ll mod=998244353;
ll sum[100005];
long long qpow(long long a,long long b)
{
    a=a%mod;
    long long ans=1;
    while(b)
    {
        if(b&1)
        {
            ans=(ans*a)%mod;
            b--;
        }
        b>>=1;
        a=a*a%mod;
    }
    return ans;
}
int main()
{
    int T;
    ll n,m;
    scanf("%d",&T);
    while(T--)
    {
        scanf("%lld%lld",&n,&m);
        sum[0]=0;
        for(int i=1;i<=n;i++)
        {
            ll x;
            scanf("%lld",&x);
            sum[i]=(sum[i-1]+x)%mod;
        }
        ll op,l,r;
        int y=m;
        while(y--)
        {
            scanf("%lld%lld%lld",&op,&l,&r);
            if(op==1) continue;
            else if(op==2)
            {
                ll ans=(sum[r]-sum[l-1])%mod;
                ans=ans*qpow(2,n*m)%mod;
                cout<<(ans+mod)%mod<<endl;
            }
        }
    }
}