zoukankan      html  css  js  c++  java
  • Problem A

    Problem A

    Time Limit : 2000/1000ms (Java/Other)   Memory Limit : 32768/32768K (Java/Other)
    Total Submission(s) : 104   Accepted Submission(s) : 32
    Problem Description
    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.
     
    Sample Input
    2 2 2 2
    2 2 2 1
     
    Sample Output
    Case 1: 4
    Case 2: 4
    [hint] 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. [/hint]
    #include <iostream>
    #include<cstdio>
    #include<algorithm>
    using namespace std;
    int a[5];
    int i,ans;
    int cmp(int a,int b)
    {
        return a>b;
    }
    int main()
    {
        int t=0;
        while(~scanf("%d",&a[0]))
        {
            t++;
            for(i=1;i<=3;i++)
                scanf("%d",&a[i]);
    
            sort(a,a+4,cmp);  //先排序
            ans=a[0]+a[1];
                printf("Case %d: %d\n",t,ans);
              //  printf("**%d\n",0x7fffffff);
        }
        return 0;
    }
  • 相关阅读:
    Python 编码错误解决方案
    Slf4j 打日志的问题 Exception 没有堆栈信息
    朋友遇到过的t厂面试题
    php 加密解密算法
    mysql replace into用法详细说明
    python3 return print 之间的差异
    mac多版本python安装 pymysql
    thinkphp 在做搜索时的注意点
    get_object_vars()
    php中var关键字的作用和意义
  • 原文地址:https://www.cnblogs.com/stepping/p/5674096.html
Copyright © 2011-2022 走看看