#P13482. [GCJ 2008 EMEA SemiFinal] Scaled Triangle

    ID: 15357 远端评测题 3000ms 1024MiB 尝试: 0 已通过: 0 难度: 5 上传者: 标签>数学2008Special Judge线性代数Google Code Jam

[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, NN. 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 "x1x_1 y1y_1 x2x_2 y2y_2 x3x_3 y3y_3". The point (x1,y1)(x_1, y_1) in the first triangle corresponds to the same corner of the picture as (x1,y1)(x_1, y_1) in the second triangle, and similarly for (x2,y2)(x_2, y_2) and (x3,y3)(x_3, y_3).

输出格式

For each test case, output one line containing "Case #xx: " 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 10510^{-5} 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

  • 1N101 \leqslant N \leqslant 10.
  • The coordinates of the points will be integer numbers between 10000-10\, 000 and 1000010\, 000. 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.