zoukankan      html  css  js  c++  java
  • 2013-03-27 problem2 A Famous ICPC Team

    Mr. B, Mr. G, Mr. M and their coach Professor S are planning their way 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]

    There are N test cases. The first line is N.

    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.

    [Sample Input]

    2

    2 2 2 2

    2 2 2 1

    [Output for Sample Input]

    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 you rotate or move the suitcases, the side length of the large box must be at least 4.

    【程序】

    #include <iostream>
    #include <algorithm>
    using namespace std;
    bool cmp(int a, int b){
        return a>=b;
    }
    
    int main(){
        int n;
        cin>>n;
        for (int i = 0; i < n; ++i)
        {        
            int A[4];
            for (int j = 0; j < 4; ++j)
            {
                cin>>A[j];
            }
            sort(A,A+4,cmp);
            cout<<"Case "<<i<<": "<<A[0]+A[1]<<endl;
        }
        return 0;
    }

     

     

     

     

  • 相关阅读:
    Win Server 2008 R2 一键配置全环境 PHP5+MYSQL5+ZEND+PHPMYADMIN
    服务器加固,安全狗V4.0正式版 (Windows)
    Win server 2008 R2激活工具使用图文教程(SK Patch v1 R2 Final OEM)
    Laoy8 V4.0 营销插件
    OK3W发布插件
    流量精灵(P2P方式,刷真实流量)
    aspcms2发布插件
    今天写一篇技术文章,关于TemplateEngine的。
    全面分析新浪博客的登录过程
    网站克隆插件
  • 原文地址:https://www.cnblogs.com/junjunjun123/p/14349080.html
Copyright © 2011-2022 走看看