You are locked in “The Cube”. It is a gigantic three-dimensional structure made up of cubic rooms distributed in a three-dimensional grid. Therefore, we can identify each room with its coordinates (x,y,z) ∈ ℤ3. Two rooms that completely share a face are connected. Hence, every room has six adjacents rooms. You need one minute to move from a room to any adjacent room.
Can you compute the sum of times to reach every special room if you place yourself in an optimal room?
Input
Input consists of several cases, each with n, followed by n different triplets xi yi zi. Assume 1 ≤ n ≤ 105 and that the coordinates are natural numbers between 1 and 109.
Output
For every case, print the minimum sum of times to reach every special room.
Input
1 23 42 100 2 1 1 1 10 20 30 4 1 1 1000000000 1 1000000000 1 1000000000 1 1 999999999 999999998 999999997
Output
0 57 5999999988