程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> Codeforces Round #265 (Div. 2)D. Restore Cube 暴力

Codeforces Round #265 (Div. 2)D. Restore Cube 暴力

編輯:C++入門知識

Codeforces Round #265 (Div. 2)D. Restore Cube 暴力


D. Restore Cube time limit per test 1 second memory limit per test 256 megabytes input standard input output standard output

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
0 0 0
0 0 1
0 0 1
0 0 1
0 1 1
0 1 1
0 1 1
1 1 1
output
YES
0 0 0
0 0 1
0 1 0
1 0 0
0 1 1
1 0 1
1 1 0
1 1 1
input
0 0 0
0 0 0
0 0 0
0 0 0
1 1 1
1 1 1
1 1 1
1 1 1
output
NO


題意給出8個點的坐標,問能不能通過重排每個點的坐標構成一個正方體,思路暴力枚舉每個點的坐標排列,枚舉到最後一個點的時候檢查是否合法,代碼如下

#include
using namespace std;
typedef long long LL;
LL a[9][5],b[8];
LL dis(int i,int j)
{
    LL x=a[i][0]-a[j][0],y=a[i][1]-a[j][1],z=a[i][2]-a[j][2];
    return x*x+y*y+z*z;
}
bool check()
{
    for(int i=0;i<8;i++){
        for(int j=0;j<8;j++)
        {
            if(i==j)continue;
            if(j>a[i][0]>>a[i][1]>>a[i][2];

    if(!is_ok(0))puts("NO");
    else
    {
        puts("YES");
        for(int i=0;i<8;i++)
        for(int j=0;j<3;j++)
        {
            cout<



  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved