306797: CF1252H. Twin Buildings

Memory Limit:256 MB Time Limit:1 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Twin Buildings

题目描述

As you might already know, space has always been a problem in ICPC Jakarta. To cope with this, ICPC Jakarta is planning to build two new buildings. These buildings should have a shape of a rectangle of the same size. Now, their problem is to find land to build the buildings. There are $ N $ lands available for sale. The $ i^{th} $ land has a rectangular shape of size $ L_i \times W_i $ . For a good feng shui, the building's side should be parallel to the land's sides. One way is to build the two buildings on two different lands, one on each land (not necessarily with the same orientation). A building of size $ A \times B $ can be build on the $ i^{th} $ land if and only if at least one of the following is satisfied: - $ A \le L_i $ and $ B \le W_i $ , or - $ A \le W_i $ and $ B \le L_i $ . Alternatively, it is also possible to build two buildings of $ A \times B $ on the $ i^{th} $ land with the same orientation. Formally, it is possible to build two buildings of $ A \times B $ on the $ i^{th} $ land if and only if at least one of the following is satisfied: - $ A \times 2 \le L_i $ and $ B \le W_i $ , or - $ A \times 2 \le W_i $ and $ B \le L_i $ , or - $ A \le L_i $ and $ B \times 2 \le W_i $ , or - $ A \le W_i $ and $ B \times 2 \le L_i $ . Your task in this problem is to help ICPC Jakarta to figure out the largest possible buildings they can build given $ N $ available lands. Note that ICPC Jakarta has to build two buildings of $ A \times B $ ; output the largest possible for $ A \times B $ .

输入输出格式

输入格式


Input begins with a line containing an integer: $ N $ ( $ 1 \le N \le 100\,000 $ ) representing the number of available lands. The next $ N $ lines each contains two integers: $ L_i $ $ W_i $ ( $ 1 \le L_i, W_i \le 10^9 $ ) representing the size of the land.

输出格式


Output in a line a number representing the largest building that ICPC Jakarta can build with exactly one decimal point (see sample input/output for clarity).

输入输出样例

输入样例 #1

2
5 5
3 4

输出样例 #1

12.5

输入样例 #2

2
2 5
4 3

输出样例 #2

8.0

输入样例 #3

3
10 1
9 8
7 6

输出样例 #3

42.0

说明

Explanation for the sample input/output #1 Two buildings of $ 2.5 \times 5 $ can be built both on the first land. Explanation for the sample input/output #2 Two buildings of $ 2 \times 4 $ can be built each on the first and second lands. Explanation for the sample input/output #3 Two buildings of $ 7 \times 6 $ can be built each on the second and third lands.

Input

暂时还没有翻译

加入题单

算法标签: