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.
A set of grid points in a plane (points whose both cartesian coordinates are integers) which we shall refer to as the pattern, as well as a group of other sets of grid points on the plane are given. We would like to know which of the sets are similar to the pattern, i.e. which of them can be transformed by rotations, translations, reflections and dilations so that they are identical to the pattern. For instance: the set of points is similar to the set , it is however not similar to the set .
Write a programme which:
In the first line of the standard input there is a single integer () - the number of points the pattern consists of. In the following lines there are pairs of integers, separated by single spaces. The 'st line contains the coordinates of 'th point belonging to the pattern: and (). The points forming the pattern are pairwise different. In the next line there is the number of sets to be investigated: (). Next, there are descriptions of these sets. The description of each set begins with a line containing a single integer - the number of points belonging to that particular set (). These points are described in the following lines, a single point per line. The description of a point consists of two integers separated by a single space - its coordinates and (). The points which belong to the same set are pairwise different.
Your programme should write to the standard output lines - one for each of the investigated sets of points. The 'th line should contain the word TAK (i.e. yes in Polish), if the 'th of the given sets of points is similar to the pattern, or the word NIE (i.e. no in Polish) if the set does not satisfy this condition.
For the input data:
3 0 0 2 0 2 1 2 3 4 1 6 5 4 5 3 4 0 6 0 5 -1
the correct result is:
TAK NIE
Task author: Piotr Stanczyk.