IOI 95

The six basic layouts of four rectangles
Four rectangles are given. Find the smallest enclosing (new) rectangle into which these four may be fitted without overlapping. By smallest rectangle, we mean the one with the smallest area.
All four rectangles should have their sides parallel to the corresponding sides of the enclosing rectangle. Figure 1 shows six ways to fit four rectangles together. These six are the only possible basic layouts, since any other layout can be obtained from a basic layout by rotation or reflection. Rectangles may be rotated 90 degrees during packing.
There may exist several different enclosing rectangles fulfilling the requirements, all with the same area. You must produce all such enclosing rectangles.
PROGRAM NAME: packrec
INPUT FORMAT
Four lines, each containing two positive space-separated integers that represent the lengths of a rectangle's two sides. Each side of a rectangle is at least 1 and at most 50.
SAMPLE INPUT (file packrec.in)
1 2 2 3 3 4 4 5
OUTPUT FORMAT
The output file contains one line more than the number of solutions. The first line contains a single integer: the minimum area of the enclosing rectangles. Each of the following lines contains one solution described by two numbers p and q with p<=q. These lines must be sorted in ascending order of p, and must all be different.
SAMPLE OUTPUT (file packrec.out)
40 4 10 5 8
完完全全的模拟题,属于那种做了就不想再做一次的题目……
USER: Geterns Liu [geterns1] TASK: packrec LANG: C++ Compiling... Compile: OK Executing... Test 1: TEST OK [0.022 secs, 3016 KB] Test 2: TEST OK [0.000 secs, 3016 KB] Test 3: TEST OK [0.000 secs, 3016 KB] Test 4: TEST OK [0.011 secs, 3016 KB] Test 5: TEST OK [0.011 secs, 3016 KB] Test 6: TEST OK [0.000 secs, 3016 KB] Test 7: TEST OK [0.000 secs, 3016 KB] Test 8: TEST OK [0.000 secs, 3016 KB] Test 9: TEST OK [0.000 secs, 3016 KB] Test 10: TEST OK [0.011 secs, 3016 KB] Test 11: TEST OK [0.011 secs, 3016 KB] Test 12: TEST OK [0.011 secs, 3016 KB] Test 13: TEST OK [0.000 secs, 3016 KB] Test 14: TEST OK [0.000 secs, 3016 KB] Test 15: TEST OK [0.000 secs, 3016 KB] Test 16: TEST OK [0.011 secs, 3016 KB] Test 17: TEST OK [0.000 secs, 3016 KB] Test 18: TEST OK [0.000 secs, 3016 KB] Test 19: TEST OK [0.022 secs, 3016 KB] Test 20: TEST OK [0.000 secs, 3016 KB] Test 21: TEST OK [0.000 secs, 3016 KB] All tests OK.Your program ('packrec') produced all correct answers! This is your submission #8 for this problem. Congratulations!
Here are the test data inputs:
------- test 1 ------- 1 2 2 3 3 4 4 5 ------- test 2 ------- 20 20 20 20 20 20 20 20 ------- test 3 ------- 4 5 5 4 4 5 16 1 ------- test 4 ------- 4 5 2 5 5 2 2 10 ------- test 5 ------- 12 18 4 6 2 17 19 3 ------- test 6 ------- 10 10 5 5 15 15 20 20 ------- test 7 ------- 1 1 1 20 1 20 20 20 ------- test 8 ------- 5 8 3 12 15 4 14 10 ------- test 9 ------- 4 5 5 6 6 4 4 5 ------- test 10 ------- 1 5 5 10 10 15 15 20 ------- test 11 ------- 3 4 8 5 7 1 4 5 ------- test 12 ------- 17 11 16 20 4 6 13 19 ------- test 13 ------- 4 2 2 6 2 3 5 8 ------- test 14 ------- 1 2 2 3 3 4 4 5 ------- test 15 ------- 4 8 8 12 12 16 16 20 ------- test 16 ------- 3 5 1 3 2 4 2 5 ------- test 17 ------- 4 3 4 4 6 3 5 5 ------- test 18 ------- 49 50 49 50 49 50 49 50 ------- test 19 ------- 10 50 45 30 28 38 36 20 ------- test 20 ------- 50 49 49 48 48 47 47 46 ------- test 21 ------- 50 49 48 47 46 45 45 44Keep up the good work!
Thanks for your submission!