vote up 1 vote down star
Say I have a square from (0,0) to (z,z). 
Given a triangle within this square which has integer coordinates 
for all its vertices.
Find out the number of  triangles within this square which are 
congruent to this triangle and have integer coordinates. 
My algorithm is as follows--


 1) Find out the minimum bounding rectangle(MBR) for the given triangle.
 2) Find out the number of congruent triangles, y within that MBR,
    obtained after reflection, rotation of the given triangle. 
    y can be either 2,4 or 8.
 3) Now find out how many such MBR's can be drawn within the given 
    big square, say x;
    (This is similar to finding number of squares on a chess board)
 4) x*y is the required answer.

Am I counting some triangles more than once or I am missing something by this algorithm? It is a problem on online judge? It gives me wrong answer. I have thought a lot about it, but I am not able to figure it out.

flag

70% accept rate

3 Answers

vote up 4 vote down

There are rotations that preserve integer coordinates but are not multiples of 90 degrees.

Consider the triangle with vertices (0,0), (240,0), and (240,180). Rotate it counter-clockwise about the origin by arcsin(3/5), or approximately 37 degrees, to obtain a congruent triangle with vertices (0,0), (192,144), and (84,288). Will your algorithm detect the congruence?

link|flag
But these are not congruent triangles – lex Oct 5 at 7:49
@Aditya: You're right, I typo-ed the second vertex....sorry about that! It's fixed now...both triangles have sides with length 240,180, and 300 and are therefore congruent. – Jim Lewis Oct 5 at 8:28
@Jim Lewis How did you find out the vertices (0,0), (192,144), (84,288)? brute force? or some other method? – eSKay Oct 5 at 8:53
2  
@eSKay: A Pythagorean right triangle, having integer lengths for all the sides, has nice rational values for the sines and cosines of all its angles. I picked one with sides (3,4,5) and scaled it up so the rotated vertices would all lie on integer coordinates. – Jim Lewis Oct 5 at 9:07
@Jim Lewis: Thank u very much for ur point – lex Oct 5 at 12:21
show 1 more comment
vote up 1 vote down

Do you want to know exact number of triangles of just estimation?

For "exact" one I don't have a answer but I'm sure that usage of MBR for this is not a good idea - because:

  1. there may be triangles that intersect bounds of MBR
  2. there may be triangles with integer coords with zoom not equal to integer number (i.e. via rotation. It's a theory (because I don't have a example in hands) but we have to proove that it's wrong before going forward)

If you want to know an estimation than MBR is good enough

link|flag
I want exact number – lex Oct 5 at 6:00
I think that a good idea is to find out all possible triangles like this or smaller (if we search for max of triangles to fit) by trying all of 3-points within circumscribed circle. Then we need to fill out the square with this triangles (greedy algorithm may be good start for this) – Meta Oct 5 at 6:05
Can u elborate more in ur post on this algorithm? I did not get the idea – lex Oct 5 at 6:08
1  
I mean than we should take all congruent triangles within the circumscribed circle. Than we use this set to fill the square. The complexity to get all triangles is: 1. get first point (~N^2 where N is proportional to lenght of triangle side) 2. get second point (~N^2) 3. try to get third point assuming that we have one of the side of square (1) so result complexity is N^2 to get full set of triangles. Brute force filling of square may be good for small squares / small sets of triangles - it's N(P) complexity task and you have to read Knut or some other guru to fill really big squares. – Meta Oct 5 at 6:16
> "one of the side of square" - I meat "triangle" here – Meta Oct 5 at 6:17
show 2 more comments
vote up 2 vote down

It seems to me that you might be missing a lot of congruent triangles this way. For smaller triangles, there won't be many different angles that you can place a congruent triangle such that all of its vertices are lattice points. But, as the size of the triangle increases, there are more opportunities to snap to the grid, so you could end up with far more than 8 different orientations of the triangle.

Instead, designate one of the points of the example triangle as the origin. Try all the lattice points of a circle of the radius of the first side as locations for the second vertex. Once you've picked the candidate point, calculate the location of the third vertex, and if it is a lattice point too, then calculate how many times the resulting triangle fits into the square without rotation. The only symmetry you have to worry about is if the original triangle is isosceles or equilateral, which would cause you to over count triangles by a factor of 2 and 3 respectively.

link|flag
Please give me an example of the case where I may miss in case of large triangles. Since it is in MBR, I think it cannot be more than 8 – lex Oct 5 at 5:52
MBR means all its 3 vertices are on the one or the other sides of the minimum bounding rectangle. And also since we want lattice points only, we need not check for every combination – lex Oct 5 at 5:56
I have a very strict time limit. The algorithm ur suggesting may take a lot of time – lex Oct 5 at 6:04
But this would be quite fast. Even naively implemented, it's O(N) in the length of the shortest side of the triangle. – Jason Orendorff Nov 24 at 14:01

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.