CF260E-Dividing Kingdom
CF260E-Dividing Kingdom
题目:
题目描述:
A country called Flatland is an infinite two-dimensional plane. Flatland has $ n $ cities, each of them is a point on the plane.
Flatland is ruled by king Circle IV. Circle IV has 9 sons. He wants to give each of his sons part of Flatland to rule. For that, he wants to draw four distinct straight lines, such that two of them are parallel to the $ Ox $ axis, and two others are parallel to the $ Oy $ axis. At that, no straight line can go through any city. Thus, Flatland will be divided into 9 parts, and each son will be given exactly one of these parts. Circle IV thought a little, evaluated his sons’ obedience and decided that the $ i $ -th son should get the part of Flatland that has exactly $ a_{i} $ cities.
Help Circle find such four straight lines that if we divide Flatland into 9 parts by these lines, the resulting parts can be given to the sons so that son number $ i $ got the part of Flatland which contains $ a_{i} $ cities.
输入格式:
The first line contains integer $ n\ (9<=n<=10^{5}) $ — the number of cities in Flatland. Next $ n $ lines each contain two space-separated integers: $ x_{i},y_{i}\ (-10^{9}<=x_{i},y_{i}<=10^{9}) $ — the coordinates of the $ i $ -th city. No two cities are located at the same point. The last line contains nine space-separated integers: .
输出格式:
If there is no solution, print a single integer -1.
Otherwise, print in the first line two distinct real space-separated numbers: $ x_{1},x_{2} $ — the abscissas of the straight lines that are parallel to the $ Oy $ axis. And in the second line print two distinct real space-separated numbers: $ y_{1},y_{2} $ — the ordinates of the straight lines, parallel to the $ Ox $ . If there are multiple solutions, print any of them.
When the answer is being checked, a city is considered to lie on a straight line, if the distance between the city and the line doesn’t exceed $ 10^{-6} $ . Two straight lines are considered the same if the distance between them doesn’t exceed $ 10^{-6} $ .
样例:
样例输入 1:
|
|
样例输出 1:
|
|
样例输入 2:
|
|
样例输出 2:
|
|
样例输入 3:
|
|
样例输出 3:
|
|
思路:
细节还是很多的。
首先不难想到暴力全排列枚举每个块是哪个,然后用数据结构来判定可不可行。
首先你需要先把这些点离散化,然后考虑先横向分,再竖向分。
以第二个样例为例,我们要先确定绿线和蓝线的位置。这个可以通过对 xx 轴记前缀和来得到。
接着确定红线和紫线,就需要建一个主席树来支持二维数点。但是这里要注意,一定要把这 33 列里每个可能的位置都试一遍,这样才能枚举到答案。
实现:
|
|