#P13482. [GCJ 2008 EMEA SemiFinal] Scaled Triangle
[GCJ 2008 EMEA SemiFinal] Scaled Triangle
题目描述
You are given two triangle-shaped pictures. The second picture is a possibly translated, rotated and scaled version of the first. The two triangles are placed on the table, with the second one placed completely inside (possibly touching the boundary of) the first one. The second triangle is always scaled by a factor that is strictly between 0 and 1.
You need to process the picture, and for that you need a point in the picture which overlaps with the same point of the scaled picture. If there is more than one solution, you can return any of them. If there are no solutions, print "No Solution" (without the quotes) for that test case.
输入格式
The first line of input gives the number of cases, . Then for each test case, there will be two lines, each containing six space-separated integers -- the coordinates of one of the triangles -- in the format " ". The point in the first triangle corresponds to the same corner of the picture as in the second triangle, and similarly for and .
输出格式
For each test case, output one line containing "Case #: " followed two real numbers representing the coordinates of the overlapping point separated by one space character, or the string "No Solution". Answers with a relative or absolute error of at most will be considered correct.
2
0 0 0 2 2 0
0 0 0 1 1 0
10 0 0 10 0 0
3 3 1 1 3 1
Case #1: 0.000000 0.000000
Case #2: 2.692308 1.538462
提示
Limits
- .
- The coordinates of the points will be integer numbers between and . The three points in each triangle will not be collinear.
Small dataset (Test set 1 - Visible)
- All tests will contain isosceles right-angle triangles. (i.e., the triangle's angles will be 45 degrees, 45 degrees, and 90 degrees.)
Large dataset (Test set 2 - Hidden)
- The triangles can have any shape.