CF1012A.Photo of The Sky
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
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) , such that x1≤x≤x2 and y1≤y≤y2 , where (x1,y1) and (x2,y2) 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 n 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.
输入格式
The first line of the input contains an only integer n ( 1≤n≤100000 ), the number of points in Pavel's records.
The second line contains 2⋅n integers a1 , a2 , ..., a2⋅n ( 1≤ai≤109 ), coordinates, written by Pavel in some order.
输出格式
Print the only integer, the minimal area of the rectangle which could have contained all points from Pavel's records.
输入输出样例
输入#1
4 4 1 3 2 3 2 1 3
输出#1
1
输入#2
3 5 8 5 5 7 5
输出#2
0
说明/提示
In the first sample stars in Pavel's records can be (1,3) , (1,3) , (2,3) , (2,4) . In this case, the minimal area of the rectangle, which contains all these points is 1 (rectangle with corners at (1,3) and (2,4) ).