A10499 | Garlands
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
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.
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.
输入格式
The first line of the input contains three integers $n$ , $m$ 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 $i$ , $j$ and $w$ ( $1<=i<=n$ , $1<=j<=m$ , $1<=w<=10^{9}$ ) — 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<=10^{6}$ ) — 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 $x_{1}$ $y_{1}$ $x_{2}$ $y_{2}$ — 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 $(x_{1},y_{1})$ and right-bottom cell has coordinates $(x_{2},y_{2})$ . It is guaranteed that $1<=x_{1}<=x_{2}<=n$ and $1<=y_{1}<=y_{2}<=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.
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 $i$ , $j$ and $w$ ( $1<=i<=n$ , $1<=j<=m$ , $1<=w<=10^{9}$ ) — 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<=10^{6}$ ) — 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 $x_{1}$ $y_{1}$ $x_{2}$ $y_{2}$ — 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 $(x_{1},y_{1})$ and right-bottom cell has coordinates $(x_{2},y_{2})$ . It is guaranteed that $1<=x_{1}<=x_{2}<=n$ and $1<=y_{1}<=y_{2}<=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.
输出格式
For each ASK operation print the sum Alesha wants to know in a separate line. Print the answers in chronological order.
输入输出样例
输入 #1
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
输出 #1
15 52
输入 #2
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
输出 #2
19 0

This image illustrates the first sample case.
This image illustrates the first sample case.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted