zoukankan      html  css  js  c++  java
  • NYOJ107 A Famous ICPC Team

    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 2
    2 2 2 1
    样例输出
    Case 1: 4
    Case 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 <iostream>
     4 #include <algorithm>
     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 }
    功不成,身已退
  • 相关阅读:
    pip安装pyinstaller失败的解决方法
    导药仪端子接线方式
    聊聊信号的回勾和过冲(转)
    玩不好触发,就不算会用示波器
    TI DS125BR401A 官方DEMO板鉴赏+学习+分析
    导药仪射频卡连接线制作方式
    解决ISE14.7在win10中不稳定的问题
    VS2013编译VTK7.1.1
    QT5.8.0与VS2013环境配置
    The Architecture of Open Source Applications---VTK
  • 原文地址:https://www.cnblogs.com/dongsheng/p/2943043.html
Copyright © 2011-2022 走看看