In the event of technical difficulties with Szkopuł, please contact us via email at [email protected].
If you would like to talk about tasks, solutions or technical problems, please visit our Discord servers. They are moderated by the community, but members of the support team are also active there.
By the distance from a given straight line to a polygon we mean the smallest distance of any point of the polygon from this straight line (by the polygon we understand both its edges and its interior). The polygon does not need to be convex, it can also have multiple vertices and self-crossings of its boundary.
Write a program which:
In the first line of the standard input there are two integers and (, ), separated by a single space and representing the number of sides of the polygon and the number of straight lines to be analyzed. Each of the following lines contains two integers and (), separated by a single space and representing coordinates of the 'th vertex of the polygon. Pairs of consecutive vertices, as well as the first and the last vertex, define sides of the polygon. Each of the following lines contains three integers , and (, ), separated by single spaces and representing a straight line defined by equation .
Your program should print lines to the standard output. 'th line should contain the square of the distance between -th straight line and the polygon, written as an irreducible fraction, where numerator is separated from denominator by the sign.
For the input data:
8 2 2 1 6 1 6 2 3 2 3 5 5 5 5 7 2 7 1 1 -2 1 0 -6
the correct result is:
1/2 0/1
Task author: Jakub Radoszewski.