#P16862. [GKS 2021 #G] Staying Hydrated
[GKS 2021 #G] Staying Hydrated
Problem Description
With online classes in full swing, it is important for Grace to take breaks and keep herself hydrated at all times. She has decided to place a water bottle in her room in the most convenient place. This means that the position of this water bottle should be close to all the places in the room where she generally hangs out like the study desk, bed and coffee table among other places.
The room is represented in the form of a coordinate plane. The number of steps Grace needs to go from Point to Point is equal to the Manhattan distance between the points. This means, Grace can only walk parallel to the axes of the coordinate plane and with each step, she can move unit in either of the directions.
Can you help her find a position in the room to keep the bottle, such that the sum of steps from the bottle to all her favourite furniture pieces will be minimum?
Notes:
- All the furniture (like study desk, bed, or coffee table) can be represented as rectangles of non- area in the plane with edges parallel to the axes.
- It is possible for furniture pieces to overlap, as she likes to work on her bed-table too.
- Assume that Grace can simply pass through the furniture while walking and does not need to go around them.
Input Format
The first line of the input gives the number of test cases, . test cases follow.
The first line of each test case contains an integer which represents the number of objects in Grace's room.
lines follow, each of them describing object. The -th line contains integers, , , , , where represents coordinates of the bottom left corner and represents coordinates of the top right corner of the -th rectangular object.
Output Format
For each test case, output line containing Case #: , where is the test case number (starting from ) and and are coordinates of the water bottle such that the sum of steps from these coordinates to all the furniture pieces will be minimum.
Note, the bottle can lie on the floor or on top of any furniture but should be placed on integer coordinates only.
If multiple solutions exist, output the solution with minimum coordinate; if multiple solutions have the same coordinate, output the solution with minimum coordinate.
2
3
0 0 1 1
2 3 4 6
0 3 5 9
1
0 0 1 1
Case #1: 1 3
Case #2: 0 0
Hint
:::align{center}
:::
In Sample Case #, Grace can place the bottle at coordinates . It is at a distance of steps from the st object, step from the nd, and steps from the rd one, which gives us as the minimum possible sum of steps from a point.
In Sample Case #, the water bottle can lie anywhere on the object itself, but coordinates correspond to the minimum and coordinates.
Limits
.
, for all .
, for all .
Test Set
.
$-100 \le x_{i,1}, x_{i,2}, y_{i,1}, y_{i,2} \le 100$, for all .
Test Set
.
$-10^9 \le x_{i,1}, x_{i,2}, y_{i,1}, y_{i,2} \le 10^9$, for all .