#Lutece0371. Area
Area
Migrated from Lutece 371 Area
All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.
Description
After o'clock, our school has turned off the lights. QiQi has nothing to do but count the stars in the sky. Suddenly, a new idea comes to QiQi. He wants to choose no more than four stars as a simple polygon's (not intersect with itself) vertexes, how large can the polygon be?
Input
The first line of the input is an integer (), which stands for the number of test cases you need to solve.
Every test case begins with an integer (), indicating the number of stars in the sky. Then lines follow, every line is a pair of integers (), indicating the coordinate of a star.
Output
For every test case, you should output Case #k:
first, where indicates the case number and starts at . Then output the largest area of the simple polygon. To ensure the answer is an integer, you should double the area. See sample for more details.
Samples
3
3
0 0
1 0
2 0
3
0 0
1 0
0 1
4
0 0
1 0
1 1
0 1
Case #1: 0
Case #2: 1
Case #3: 2
Resources
The 9th UESTC Programming Contest Final