CF BUDDY
← Problems·

1012A · Photo of The Sky

1500 · brute force, implementation, math

Problem: Pavel made a photo of his favourite stars in the sky. His camera takes a photo of all points of the sky that belong to some rectangle with sides parallel to the coordinate axes.

Strictly speaking, it makes a photo of all points with coordinates (x,y)(x, y), such that x1xx2x_1 \leq x \leq x_2 and y1yy2y_1 \leq y \leq y_2, where (x1,y1)(x_1, y_1) and (x2,y2)(x_2, y_2) are coordinates of the left bottom and the right top corners of the rectangle being photographed. The area of this rectangle can be zero.

After taking the photo, Pavel wrote down coordinates of nn of his favourite stars which appeared in the photo. These points are not necessarily distinct, there can be multiple stars in the same point of the sky.

Pavel has lost his camera recently and wants to buy a similar one. Specifically, he wants to know the dimensions of the photo he took earlier. Unfortunately, the photo is also lost. His notes are also of not much help; numbers are written in random order all over his notepad, so it's impossible to tell which numbers specify coordinates of which points.

Pavel asked you to help him to determine what are the possible dimensions of the photo according to his notes. As there are multiple possible answers, find the dimensions with the minimal possible area of the rectangle.

Input Format: The first line of the input contains an only integer nn (1n1000001 \leq n \leq 100\,000), the number of points in Pavel's records.

The second line contains 2n2 \cdot n integers a1a_1, a2a_2, ..., a2na_{2 \cdot n} (1ai1091 \leq a_i \leq 10^9), coordinates, written by Pavel in some order.

Output Format: Print the only integer, the minimal area of the rectangle which could have contained all points from Pavel's records.

Note: In the first sample stars in Pavel's records can be (1,3)(1, 3), (1,3)(1, 3), (2,3)(2, 3), (2,4)(2, 4). In this case, the minimal area of the rectangle, which contains all these points is 11 (rectangle with corners at (1,3)(1, 3) and (2,4)(2, 4)).

Sample Cases

Case 1

Input

4
4 1 3 2 3 2 1 3

Output

1

Case 2

Input

3
5 8 5 5 7 5

Output

0

Similar problems

00:00:00
Loading editor…
Welcome! I'm your coding tutor for this problem. Use the chips below to reveal stored hints or get AI feedback on your code. I'll guide you step by step — never giving away the solution.

Sign in to unlock AI tutor feedback