Problem H
Crop Triangles (Easy)
Note that this is an easier version of the problem crophard.
Some pranksters have watched too much Discovery Channel and
now they want to build a crop triangle during the night. They
want to build it inside a large crop that looks like an evenly
spaced grid from above. There are some trees planted on the
field. Each tree is situated on an intersection of two grid
lines (a grid point). The pranksters want the vertices of their
crop triangle to be located at these trees. Also, for their
crop triangle to be more interesting they want the
center of that triangle to be located at some grid
point as well. We remind you that if a triangle has the
vertices
You will be given a set of points with integer coordinates giving the location of all the trees on the grid. You are asked to compute how many triangles you can form with distinct vertices in this set of points so that their center is a grid point as well (i.e. the center has integer coordinates).
If a triangle has area 0 we will still consider it a valid triangle.
Input
The first line of input gives the number of cases,
Using the numbers
X = x0, Y = y0 print X, Y for i = 1 to n-1 X = (A * X + B) mod M Y = (C * Y + D) mod M print X, Y
You can assume that
Output
For each test case, output one line containing "Case
#
Sample Input 1 | Sample Output 1 |
---|---|
2 4 10 7 1 2 0 1 20 6 2 0 2 1 1 2 11 |
Case #1: 1 Case #2: 2 |