博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
NYOJ-107 A Famous ICPC Team
阅读量:6157 次
发布时间:2019-06-21

本文共 1633 字,大约阅读时间需要 5 分钟。

A Famous ICPC Team

时间限制:1000 ms  |  内存限制:65535 KB
难度:1
 
描述

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.

 
输入
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.
输出
For each test case, display a single line containing the case number and the minimum side length of the large box required.
样例输入
2 2 2 22 2 2 1
样例输出
Case 1: 4Case 2: 4
提示
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 you rotate or move the suitcases, the side length of the large box must
be at least 4.
1 //水了一道难度为 1 的题,只为弥补对英语的痛。。。。。哎 2 //只用求得最长两个边长之和即可 3 #include 
4 #include
5 6 using namespace std; 7 8 int main() 9 {10 int leng[4];11 int cnt = 1;12 while(cin >> leng[0] >> leng[1] >> leng[2] >> leng[3])13 {14 sort(leng, leng + 4);15 cout << "Case " << cnt++ << ": " << leng[2] + leng[3] << endl;16 }17 return 0;18 }

 

转载地址:http://cksfa.baihongyu.com/

你可能感兴趣的文章
Java基础学习总结(4)——对象转型
查看>>
BZOJ3239Discrete Logging——BSGS
查看>>
SpringMVC权限管理
查看>>
spring 整合 redis 配置
查看>>
cacti分组发飞信模块开发
查看>>
浅析LUA中游戏脚本语言之魔兽世界
查看>>
飞翔的秘密
查看>>
Red Hat 安装源包出错 Package xxx.rpm is not signed
查看>>
编译安装mysql-5.6.16.tar.gz
查看>>
活在当下
查看>>
每天进步一点----- MediaPlayer
查看>>
PowerDesigner中CDM和PDM如何定义外键关系
查看>>
跨域-学习笔记
查看>>
the assignment of reading paper
查看>>
android apk 逆向中常用工具一览
查看>>
MyEclipse 报错 Errors running builder 'JavaScript Validator' on project......
查看>>
Skip List——跳表,一个高效的索引技术
查看>>
Yii2单元测试初探
查看>>
五、字典
查看>>
前端js之JavaScript
查看>>