A10026 | Robots protection
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Company "Robots industries" produces robots for territory protection. Robots protect triangle territories — right isosceles triangles with catheti parallel to North-South and East-West directions.
Owner of some land buys and sets robots on his territory to protect it. From time to time, businessmen want to build offices on that land and want to know how many robots will guard it. You are to handle these queries.
Owner of some land buys and sets robots on his territory to protect it. From time to time, businessmen want to build offices on that land and want to know how many robots will guard it. You are to handle these queries.
输入格式
The first line contains integer $N$ — width and height of the land, and integer $Q$ — number of queries to handle.
Next $Q$ lines contain queries you need to process.
Two types of queries:
1. $1$ $dir$ $x$ $y$ $len$ — add a robot to protect a triangle. Depending on the value of $dir$ , the values of $x$ , $y$ and $len$ represent a different triangle:
- $dir=1$ : Triangle is defined by the points $(x,y)$ , $(x+len,y)$ , $(x,y+len)$
- $dir=2$ : Triangle is defined by the points $(x,y)$ , $(x+len,y)$ , $(x,y-len)$
- $dir=3$ : Triangle is defined by the points $(x,y)$ , $(x-len,y)$ , $(x,y+len)$
- $dir=4$ : Triangle is defined by the points $(x,y)$ , $(x-len,y)$ , $(x,y-len)$
2. $2$ $x$ $y$ — output how many robots guard this point (robot guards a point if the point is inside or on the border of its triangle)
- $1<=N<=5000$
- $1<=Q<=10^{5}$
- $1<=dir<=4$
- All points of triangles are within range $[1,N]$
- All numbers are positive integers
Next $Q$ lines contain queries you need to process.
Two types of queries:
1. $1$ $dir$ $x$ $y$ $len$ — add a robot to protect a triangle. Depending on the value of $dir$ , the values of $x$ , $y$ and $len$ represent a different triangle:
- $dir=1$ : Triangle is defined by the points $(x,y)$ , $(x+len,y)$ , $(x,y+len)$
- $dir=2$ : Triangle is defined by the points $(x,y)$ , $(x+len,y)$ , $(x,y-len)$
- $dir=3$ : Triangle is defined by the points $(x,y)$ , $(x-len,y)$ , $(x,y+len)$
- $dir=4$ : Triangle is defined by the points $(x,y)$ , $(x-len,y)$ , $(x,y-len)$
2. $2$ $x$ $y$ — output how many robots guard this point (robot guards a point if the point is inside or on the border of its triangle)
- $1<=N<=5000$
- $1<=Q<=10^{5}$
- $1<=dir<=4$
- All points of triangles are within range $[1,N]$
- All numbers are positive integers
输出格式
For each second type query output how many robots guard this point. Each answer should be in a separate line.
输入输出样例
输入 #1
17 10 1 1 3 2 4 1 3 10 3 7 1 2 6 8 2 1 3 9 4 2 2 4 4 1 4 15 10 6 2 7 7 2 9 4 2 12 2 2 13 8
输出 #1
2 2 2 0 1
暂无题解
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted