A13825 | 5G Antenna Towers
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
After making a strategic plan with carriers for expansion of mobile network throughout the whole country, the government decided to cover rural areas with the last generation of 5G network.
Since 5G antenna towers will be built in the area of mainly private properties, the government needs an easy way to find information about landowners for each property partially or fully contained in the planned building area.
The planned building area is represented as a rectangle with sides $width$ and $height$ .
Every 5G antenna tower occupies a circle with a center in $(x,y)$ and radius $r$ .
There is a database of Geodetic Institute containing information about each property. Each property is defined with its identification number and polygon represented as an array of $(x,y)$ points in the counter-clockwise direction.
Your task is to build an IT system which can handle queries of type $(x, y, r)$ in which $(x,y)$ represents a circle center, while $r$ represents its radius. The IT system should return the total area of properties that need to be acquired for the building of a tower so that the government can estimate the price. Furthermore, the system should return a list of identification numbers of these properties (so that the owners can be contacted for land acquisition).
A property needs to be acquired if the circle of the antenna tower is intersecting or touching it.
Since 5G antenna towers will be built in the area of mainly private properties, the government needs an easy way to find information about landowners for each property partially or fully contained in the planned building area.
The planned building area is represented as a rectangle with sides $width$ and $height$ .
Every 5G antenna tower occupies a circle with a center in $(x,y)$ and radius $r$ .
There is a database of Geodetic Institute containing information about each property. Each property is defined with its identification number and polygon represented as an array of $(x,y)$ points in the counter-clockwise direction.
Your task is to build an IT system which can handle queries of type $(x, y, r)$ in which $(x,y)$ represents a circle center, while $r$ represents its radius. The IT system should return the total area of properties that need to be acquired for the building of a tower so that the government can estimate the price. Furthermore, the system should return a list of identification numbers of these properties (so that the owners can be contacted for land acquisition).
A property needs to be acquired if the circle of the antenna tower is intersecting or touching it.
输入格式
The first line contains the size of the building area as double values $width$ , $height$ , and an integer $n$ — the number of properties in the database.
Each of the next $n$ lines contains the description of a single property in the form of an integer number $v$ ( $3 \le v \le 40$ ) — the number of points that define a property, as well as $2*v$ double numbers — the coordinates $(x,y)$ of each property point. Line $i$ ( $0 \le i \le n-1$ ) contains the information for property with id $i$ .
The next line contains an integer $q$ — the number of queries.
Each of the next $q$ lines contains double values $x$ , $y$ , $r$ — the coordinates of an antenna circle center $(x, y)$ and its radius $r$ .
$1 \le n * q \le 10^6$
Each of the next $n$ lines contains the description of a single property in the form of an integer number $v$ ( $3 \le v \le 40$ ) — the number of points that define a property, as well as $2*v$ double numbers — the coordinates $(x,y)$ of each property point. Line $i$ ( $0 \le i \le n-1$ ) contains the information for property with id $i$ .
The next line contains an integer $q$ — the number of queries.
Each of the next $q$ lines contains double values $x$ , $y$ , $r$ — the coordinates of an antenna circle center $(x, y)$ and its radius $r$ .
$1 \le n * q \le 10^6$
输出格式
For each of the $q$ queries, your program should output a line containing the total area of all the properties that need to be acquired, an integer representing the number of such properties, as well as the list of ids of these properties (separated by blank characters, arbitrary order).
输入输出样例
输入 #1
10 10 3 4 2 2 3 2 3 3 2 3 3 3.5 2 4.5 2 4.5 3 4 7 8 7.5 8.5 8 8 7.5 9 5 2 3.5 0.5 3.3 2 0.4 5 2.5 0.5 7.5 8.5 0.5 3 7 0.5
输出 #1
1.000000 1 0 1.500000 2 0 1 0.500000 1 1 0.250000 1 2 0.000000 0
You can assume that the land not covered with properties (polygons) is under the government's ownership and therefore doesn't need to be acquired. Properties do not intersect with each other.
Precision being used for solution checking is $10^{-4}$ .
Precision being used for solution checking is $10^{-4}$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted