Submit | All submissions | Best solutions | Back to list |
TEAM2 - A Famous ICPC Team |
Mr. B, Mr. G, Mr. M and their coach Professor S are planning their way to Warsaw for the ACM-ICPC World Finals. Each of the four has a square-shaped suitcase with side length Ai (1 <= i <= 4) respectively. They want to pack their suitcases into a large square box. The heights of the large box as well as the four suitcases are exactly the same. So they only need to consider the large box’s side length. Of course, you should write a program to output the minimum side length of the large box so that the four suitcases can be put into the box without overlapping.
Input
Each test case contains only one line containing 4 integers Ai (1<= i <=4, 1<= Ai <=1,000,000,000) indicating the side length of each suitcase.
Output
For each test case, display a single line containing the case number and the minimum side length of the large box required.
Example
Input: 2 2 2 2 2 2 2 1 Output: Case 1: 4 Case 2: 4
Explanation
For the first case, all suitcases have size 2x2. So they can perfectly be packed in a 4x4 large box without wasting any space.
For the second case, three suitcases have size 2x2 and the last one is 1x1. No matter how to rotate or move, you could find the side length of the box must be at least 4.
Added by: | Fudan University Problem Setters |
Date: | 2012-05-25 |
Time limit: | 1s |
Source limit: | 50000B |
Memory limit: | 1536MB |
Cluster: | Cube (Intel G860) |
Languages: | All except: ASM64 |
Resource: | FDU Local Contest 2012 |
hide comments
|
||||||||||
2014-06-09 03:09:52 sarthak joshi
My 25th |
||||||||||
2014-06-05 23:22:49 Soma
more test cases? |
||||||||||
2014-04-12 22:46:02 anon
this is too simple :o after many test cases realized ans would always be this |
||||||||||
2013-12-20 18:04:29 Hariharan
used cout, got TLE.. used printf, got AC.. |
||||||||||
2013-12-13 06:11:13 rajul
never thought it could be so simple :/ costed me many wrong ans.. |
||||||||||
2013-08-21 10:37:12 Nishant Gupta
tutorial stuff....think like a kid !! :D |
||||||||||
2013-07-13 19:57:52 tamed
@ps why wrong ans my id 9763882 Last edit: 2013-08-01 20:19:26 |
||||||||||
2013-06-30 10:23:39 saurabh jain
easy one !! |
||||||||||
2013-06-14 04:15:44 rahul kumar singh
@contradiction how wil a 12*12 contain 9*9 and 8*8 boxes tugedr??? |
||||||||||
2013-05-13 20:31:58 CoNtRaDiCtIoN
output for 1 4 8 9 should be 12 ?? am i correct... |