lightoj 1080 Binary Simulation (线段树区间更新)

1080 - Binary Simulation
Time Limit: 2 second(s)Memory Limit: 64 MB

Given a binary number, we are about to do some operations on the number. Two types of operations can be here.

'I i j'    which means invert the bit from i to j (inclusive)

'Q i'    answer whether the ith bit is 0 or 1

The MSB (most significant bit) is the first bit (i.e. i=1). The binary number can contain leading zeroes.

Input

Input starts with an integer T (≤ 10), denoting the number of test cases.

Each case starts with a line containing a binary integer having length n (1 ≤ n ≤ 105). The next line will contain an integer q (1 ≤ q ≤ 50000) denoting the number of queries. Each query will be either in the form 'I i j' where i, j are integers and 1 ≤ i ≤ j ≤ n. Or the query will be in the form 'Q i' where i is an integer and1 ≤ i ≤ n.

Output

For each case, print the case number in a single line. Then for each query 'Q i' you have to print 1 or 0 depending on the ith bit.

Sample Input

Output for Sample Input

2

0011001100

6

I 1 10

I 2 7

Q 2

Q 1

Q 7

Q 5

1011110111

6

I 1 10

I 2 7

Q 2

Q 1

Q 7

Q 5

Case 1:

0

1

1

0

Case 2:

0

0

0

1

Note

Dataset is huge, use faster i/o methods.


PROBLEM SETTER: JANE ALAM JAN


题目大意:两个操作I x y把[x,y]内的数字取反,Q x查询第x位的数字是0还是1

题目分析:因为同一个区间取反偶数次和原数相同,因此只需要累计区间取反次数即可,用线段树维护,区间更新
#include <cstdio>
#include <cstring>
#include <algorithm>
#define lson l, mid, rt << 1
#define rson mid + 1, r, rt << 1 | 1
using namespace std;
int const MAX = 1e5 + 5;
int chg[MAX << 2], lazy[MAX << 2];
char s[MAX];
int n, len;

void PushDown(int rt)
{
	if(lazy[rt])
	{
		chg[rt << 1] += lazy[rt];
		chg[rt << 1 | 1] += lazy[rt];
		lazy[rt << 1] += lazy[rt];
		lazy[rt << 1 | 1] += lazy[rt];
		lazy[rt] = 0;
	}
	return;
}

void Update(int L, int R, int l, int r, int rt)
{
	if(L <= l && r <= R)
	{
		chg[rt] ++;
		lazy[rt] ++;
		return;
	}
	int mid = (l + r) >> 1;
	PushDown(rt);
	if(L <= mid)
		Update(L, R, lson);
	if(mid < R)
		Update(L, R, rson);
}

int Query(int L, int R, int l, int r, int rt)
{
	if(L == l && r == R)
		return chg[rt];
	int mid = (l + r) >> 1, ans = 0;;
	PushDown(rt);
	if(L <= mid)
		return Query(L, R, lson);
	if(mid < R)
		return Query(L, R, rson);
	return ans;
}

int main()
{
	int T;
	scanf("%d", &T);
	for(int ca = 1; ca <= T; ca++)
	{
		scanf("%s %d", s + 1, &n);
		len = strlen(s + 1);
		memset(chg, 0, sizeof(chg));
		memset(lazy, 0, sizeof(lazy));
		printf("Case %d:\n", ca);
		while(n --)
		{
			char op[2];
			scanf("%s", op);
			if(op[0] == 'I')
			{
				int l, r;
				scanf("%d %d", &l, &r);
				Update(l, r, 1, len, 1);
			}
			else
			{
				int x, num = 0;
				scanf("%d", &x);
				num = Query(x, x, 1, len, 1);
				if(num & 1)
					printf("%d\n", (s[x] == '0') ? 1 : 0);
				else
					printf("%d\n", (s[x] == '0') ? 0 : 1);
			}
		}
	}
}



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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值