Codeforces Round #368 (Div. 2) E Garlands(二维树状数组+暴力)

题意:给你n*m的矩阵,有k条链,两种操作,你可以每次修改一条链的值,使之变为0或者恢复原来的值,或者查询一个子矩阵的权值和

思路:n,m,k只有2000,并且留意到题目说查询权值和的操作最多只有2000次,那么就可以不用每次修改的时候就马上修改,而是选择给它一个标记,到了询问的时候再遍历一次所有链来修改,有点类似线段树的lazy标志一样,查询子矩阵的权值和显然的做法就是用一个二维树状数组,这样复杂度大概是2000*2000*log(2000)*log(2000),大概2*1e8就可以跑过去了


#include<bits/stdc++.h>
using namespace std;
const int maxn = 2005;
const int maxq = 1e6+7;
#define LL long long
LL c[maxn][maxn];
LL lowbit(LL x){return x&(-x);}
void update(int x,int y,LL v)
{
     for(int i = x;i<=maxn;i+=lowbit(i))
		 for(int j = y;j<=maxn;j+=lowbit(j))
			 c[i][j]+=v;
}

LL query(int x,int y)
{
	LL ans = 0;
	for(int i = x;i>0;i-=lowbit(i))
		for(int j = y;j>0;j-=lowbit(j))
			ans+=c[i][j];
	return ans;
}
struct Node
{
	int x,y,w;
	Node(){};
	Node(int xx,int yy,int ww):x(xx),y(yy),w(ww){};
};
vector<Node>e[maxn];
int flag[maxn];
int check[maxn];

int main()
{
    int n,m,k;
	scanf("%d%d%d",&n,&m,&k);
	for(int i = 1;i<=k;i++)
	{
       int num;
	   scanf("%d",&num);
	   for(int j = 1;j<=num;j++)
	   {
		   int xx,yy,ww;
		   scanf("%d%d%d",&xx,&yy,&ww);
		   e[i].push_back(Node(xx,yy,ww));
		   update(xx,yy,ww);
	   } 
	}
	int q;
	scanf("%d",&q);
	while(q--)
	{
		char op[10];
		scanf("%s",op);
		if(op[0]=='A')
		{
			for(int i = 1;i<=k;i++)
			{
				if(check[i])
				{
		         	int len = e[i].size();
			        for(int j = 0;j<len;j++)
				      update(e[i][j].x,e[i][j].y,e[i][j].w*(flag[i]?-1:1));
				}
			}
            int x1,y1,x2,y2;
			scanf("%d%d%d%d",&x1,&y1,&x2,&y2);
			printf("%lld\n",query(x2,y2)-query(x1-1,y2)-query(x2,y1-1)+query(x1-1,y1-1));
			memset(check,0,sizeof(check));
		}
		else
		{
            int l;
			scanf("%d",&l);
			flag[l]^=1;
			check[l]^=1;
		//	int len = e[l].size();
		//	for(int i = 0;i<len;i++)
		//		update(e[l][i].x,e[l][i].y,e[l][i].w*(flag[l]?-1:1));
		}
	}
}


E. Garlands
time limit per test
3 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

Like all children, Alesha loves New Year celebration. During the celebration he and his whole family dress up the fir-tree. Like all children, Alesha likes to play with garlands — chains consisting of a lightbulbs.

Alesha uses a grid field sized n × m for playing. The rows of the field are numbered from 1 to n from the top to the bottom and columns are numbered from 1 to m from the left to the right.

Alesha has k garlands which he places at the field. He does so in the way such that each lightbulb of each garland lies in the center of some cell in the field, and each cell contains at most one lightbulb. Of course lightbulbs, which are neighbours in some garland, appears in cells neighbouring by a side.

The example of garland placing.

Each garland is turned off or turned on at any moment. If some garland is turned on then each of its lightbulbs is turned on, the same applies for garland turned off. Each lightbulb in the whole garland set is unique, and thus, being turned on, brings Alesha some pleasure, described by an integer value. Turned off lightbulbs don't bring Alesha any pleasure.

Alesha can turn garlands on and off and wants to know the sum of pleasure value which the lightbulbs, placed in the centers of the cells in some rectangular part of the field, bring him. Initially all the garlands are turned on.

Alesha is still very little and can't add big numbers. He extremely asks you to help him.

Input

The first line of the input contains three integers nm and k (1 ≤ n, m, k ≤ 2000) — the number of field rows, the number of field columns and the number of garlands placed at the field respectively.

Next lines contains garlands set description in the following format:

The first line of a single garland description contains a single integer len (1 ≤ len ≤ 2000) — the number of lightbulbs in the garland.

Each of the next len lines contains three integers ij and w (1 ≤ i ≤ n1 ≤ j ≤ m1 ≤ w ≤ 109) — the coordinates of the cell containing a lightbullb and pleasure value Alesha gets from it if it is turned on. The lightbulbs are given in the order they are forming a chain in the garland. It is guaranteed that neighbouring lightbulbs are placed in the cells neighbouring by a side.

The next line contains single integer q (1 ≤ q ≤ 106) — the number of events in Alesha's game. The next q lines describes events in chronological order. The i-th of them describes the i-th event in the one of the following formats:

  • SWITCH i — Alesha turns off i-th garland if it is turned on, or turns it on if it is turned off. It is guaranteed that 1 ≤ i ≤ k.
  • ASK x1 y1 x2 y2 — Alesha wants to know the sum of pleasure values the lightbulbs, placed in a rectangular part of the field. Top-left cell of a part has coordinates (x1, y1) and right-bottom cell has coordinates (x2, y2). It is guaranteed that 1 ≤ x1 ≤ x2 ≤ n and1 ≤ y1 ≤ y2 ≤ m. There is no more than 2000 events of this type in the input.

All the numbers in the input are integers.

Please note that the input is quite large, so be careful while using some input ways. In particular, it's not recommended to use cin in codes on C++ and class Scanner in codes on Java.

Output

For each ASK operation print the sum Alesha wants to know in a separate line. Print the answers in chronological order.

Examples
input
4 4 3
5
1 1 2
1 2 3
2 2 1
2 1 4
3 1 7
4
1 3 1
2 3 3
2 4 3
1 4 1
7
4 1 1
4 2 9
3 2 8
3 3 3
4 3 4
4 4 1
3 4 1
2
ASK 2 2 3 3
ASK 1 1 4 4
output
15
52
input
4 4 1
8
4 1 1
3 1 2
2 1 1
1 1 7
1 2 5
2 2 4
2 3 1
1 3 1
3
ASK 1 1 3 2
SWITCH 1
ASK 1 1 3 2
output
19
0
Note

This image illustrates the first sample case


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值