CF242:XOR on Segment(线段树区间更新 & 二进制)

E. XOR on Segment
time limit per test
4 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

You've got an array a, consisting of n integers a1, a2, ..., an. You are allowed to perform two operations on this array:

  1. Calculate the sum of current array elements on the segment [l, r], that is, count value al + al + 1 + ... + ar.
  2. Apply the xor operation with a given number x to each array element on the segment [l, r], that is, execute . This operation changes exactly r - l + 1 array elements.

Expression  means applying bitwise xor operation to numbers x and y. The given operation exists in all modern programming languages, for example in language C++ and Java it is marked as "^", in Pascal — as "xor".

You've got a list of m operations of the indicated type. Your task is to perform all given operations, for each sum query you should print the result you get.

Input

The first line contains integer n (1 ≤ n ≤ 105) — the size of the array. The second line contains space-separated integers a1, a2, ..., an(0 ≤ ai ≤ 106) — the original array.

The third line contains integer m (1 ≤ m ≤ 5·104) — the number of operations with the array. The i-th of the following m lines first contains an integer ti (1 ≤ ti ≤ 2) — the type of the i-th query. If ti = 1, then this is the query of the sum, if ti = 2, then this is the query to change array elements. If the i-th operation is of type 1, then next follow two integers li, ri (1 ≤ li ≤ ri ≤ n). If the i-th operation is of type 2, then next follow three integers li, ri, xi (1 ≤ li ≤ ri ≤ n, 1 ≤ xi ≤ 106). The numbers on the lines are separated by single spaces.

Output

For each query of type 1 print in a single line the sum of numbers on the given segment. Print the answers to the queries in the order in which the queries go in the input.

Please, do not use the %lld specifier to read or write 64-bit integers in С++. It is preferred to use the cincout streams, or the %I64dspecifier.

Examples
input
5
4 10 3 13 7
8
1 2 4
2 1 3 3
1 2 4
1 3 3
2 2 5 5
1 1 5
2 1 2 10
1 2 3
output
26
22
0
34
11
input
6
4 7 4 0 7 3
5
2 2 3 8
1 1 5
2 3 5 1
2 4 5 6
1 2 3
output
38
28

题意:N个点,M个操作,1是查询区间和,2是区间内每个数异或x。

思路:异或只跟每个二进制位有关,于是线段树储存区间内二进制各个位1的数量,异或一个数时,若某位是1,那么用区间长度减去原来的1数量就是异或后的1数量了。

# include <bits/stdc++.h>
# define lson l,m,id<<1
# define rson m+1,r,id<<1|1
using namespace std;
typedef long long LL;
const int maxn = 1e5+30;
LL a[maxn<<2][23], lazy[maxn<<2];
int x;
inline void pushup(int id)
{
    for(int i=0; i<20; ++i)
        a[id][i] = a[id<<1][i] + a[id<<1|1][i];
}
inline void pushdown(int id, int dis)
{
    if(lazy[id])
    {
        lazy[id<<1] ^= lazy[id];
        lazy[id<<1|1] ^= lazy[id];
        for(int i=0; i<20; ++i)
        {
            if((1<<i)&lazy[id])
            {
                a[id<<1][i] = (dis-(dis>>1))-a[id<<1][i];
                a[id<<1|1][i] = (dis>>1)-a[id<<1|1][i];
            }
        }
        lazy[id] = 0;
    }
}
void build(int l, int r, int id)
{
    lazy[id] = 0;
    if(l == r)
    {
        scanf("%d",&x);
        for(int i=0; i<20; ++i)
        {
            if((1<<i)&x) a[id][i] = 1;
            else a[id][i] = 0;
        }
        return;
    }
    //puts("in");
    int m = l+r>>1;
    build(lson);
    build(rson);
    pushup(id);
}
void update(int L, int R, int val, int l, int r, int id)
{
    if(L <= l && R >= r)
    {
        lazy[id] ^= val;
        for(int i=0; i<20; ++i)
            if((1<<i)&val)
                a[id][i] = (r-l+1)-a[id][i];
        return;
    }
    pushdown(id, r-l+1);
    int m = l+r>>1;
    if(L <= m) update(L, R, val, lson);
    if(R > m) update(L, R, val, rson);
    pushup(id);
}

LL query(int L, int R, int l ,int r, int id)
{
    if(L <= l && R >= r)
    {
        LL ans = 0;
        for(int i=0; i<20; ++i)
            ans += ((LL)a[id][i]<<i);
        return ans;
    }
    pushdown(id, r-l+1);
    LL ans = 0;
    int m = l+r>>1;
    if(L <= m) ans += query(L, R, lson);
    if(R > m) ans += query(L, R, rson);
    return ans;
}
int main()
{
    int n, m;
    scanf("%d",&n);
    build(1,n,1);
    scanf("%d",&m);
    while(m--)
    {
        int op, l, r, x;
        scanf("%d%d%d",&op,&l,&r);
        if(op == 2)
        {
            scanf("%d",&x);
            update(l, r, x, 1, n, 1);
        }
        else
            printf("%I64d\n",query(l, r, 1, n, 1));
    }
    return 0;
}
下面是超时的样例:

# include <bits/stdc++.h>
# define lson l,m,id<<1
# define rson m+1,r,id<<1|1
using namespace std;
typedef long long LL;
const int maxn = 1e5+30;
LL num[maxn<<2], sum[maxn<<2], lazy[maxn<<2];
void build(int l, int r, int id)
{
    if(l==r)
    {
        scanf("%I64d",&num[id]);
        sum[id] = num[id];
        return;
    }
    int m = l+r>>1;
    build(lson);
    build(rson);
    sum[id] = sum[id<<1] + sum[id<<1|1];
    if(num[id<<1] != -1 && num[id<<1]==num[id<<1|1]) num[id] = num[id<<1];
    else num[id] = -1;
}

void pushdown(int rt, int dis)
{
    if(lazy[rt])
    {
        lazy[rt<<1] += lazy[rt];
        lazy[rt<<1|1] += lazy[rt];
        num[rt<<1] = num[rt<<1|1] = num[rt];
        sum[rt << 1] += lazy[rt]*(dis-(dis>>1));
        sum[rt<<1|1] += lazy[rt]*(dis>>1);
        lazy[rt] = 0;
    }
}
void update(int L, int R, int val, int l, int r, int id)
{
    if(L<=l && R>=r && num[id]!=-1)//区间内各个值一样才lazy,(显然出现的概率不高)。
    {
        LL tmp = (val^num[id])-num[id];
        lazy[id] += tmp;
        sum[id] += tmp*(r-l+1);
        num[id] = val^num[id];
        return;
    }
    pushdown(id, r-l+1);
    int m = l+r>>1;
    if(L <= m) update(L, R, val, lson);
    if(R > m) update(L, R, val, rson);
    sum[id] = sum[id<<1] + sum[id<<1|1];
    if(num[id<<1]!=-1 && num[id<<1]==num[id<<1|1]) num[id] = num[id<<1];
    else  num[id] = -1;
}

LL query(int L, int R, int l, int r, int id)
{
    if(L<=l && R>=r)
        return sum[id];
    pushdown(id, r-l+1);
    LL ans = 0;
    int m = l+r>>1;
    if(L <= m) ans += query(L, R, lson);
    if(R > m) ans += query(L, R, rson);
    return ans;
}
int main()
{
    int n, m;
    scanf("%d",&n);
    build(1, n, 1);
    scanf("%d",&m);
    while(m--)
    {
        int op, l, r, x;
        scanf("%d%d%d",&op,&l,&r);
        if(op == 2)
        {
            scanf("%d",&x);
            update(l,r,x,1,n,1);
        }
        else
            printf("%I64d\n",query(l,r,1,n,1));
    }
    return 0;
}


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值