「CF464B」Restore Cube

2014年9月8日2,9610

Peter had a cube with non-zero length of a side. He put the cube into three-dimensional space in such a way that its vertices lay at integer points (it is possible that the cube’s sides are not parallel to the coordinate axes). Then he took a piece of paper and wrote down eight lines, each containing three integers — coordinates of cube’s vertex (a single line contains coordinates of a single vertex, each vertex is written exactly once), put the paper on the table and left. While Peter was away, his little brother Nick decided to play with the numbers on the paper. In one operation Nick could swap some numbers inside a single line (Nick didn’t swap numbers from distinct lines). Nick could have performed any number of such operations.

When Peter returned and found out about Nick’s mischief, he started recollecting the original coordinates. Help Peter restore the original position of the points or else state that this is impossible and the numbers were initially recorded incorrectly.

Input

Each of the eight lines contains three space-separated integers — the numbers written on the piece of paper after Nick’s mischief. All numbers do not exceed 106 in their absolute value.

Output

If there is a way to restore the cube, then print in the first line “YES“. In each of the next eight lines print three integers — the restored coordinates of the points. The numbers in the i-th output line must be a permutation of the numbers in i-th input line. The numbers should represent the vertices of a cube with non-zero length of a side. If there are multiple possible ways, print any of them.

If there is no valid way, print “NO” (without the quotes) in the first line. Do not print anything else.

Sample test(s)
input

output

input

output

题解

题意给定三维空间内8个点,每个点的xyz坐标被打乱,问是否能通过调整每个点的xyz坐标使得这八个点构成一个正方体。。。

我会告诉你我不知道正方体可以不平行于坐标轴wa飞了?

显然这题是个6^8搜索。。。

判断正方体可以通过任意一个顶点到其余七个顶点的距离判断

注意坐标全为0的情况

 

avatar
  Subscribe  
提醒