zoukankan      html  css  js  c++  java
  • Codeforces Round #273 (Div. 2)-C. Table Decorations

    http://codeforces.com/contest/478/problem/C

    C. Table Decorations
    time limit per test
    1 second
    memory limit per test
    256 megabytes
    input
    standard input
    output
    standard output

    You have r red, g green and b blue balloons. To decorate a single table for the banquet you need exactly three balloons. Three balloons attached to some table shouldn't have the same color. What maximum number t of tables can be decorated if we know number of balloons of each color?

    Your task is to write a program that for given values rg and b will find the maximum number t of tables, that can be decorated in the required manner.

    Input

    The single line contains three integers rg and b (0 ≤ r, g, b ≤ 2·109) — the number of red, green and blue baloons respectively. The numbers are separated by exactly one space.

    Output

    Print a single integer t — the maximum number of tables that can be decorated in the required manner.

    Sample test(s)
    input
    5 4 3
    output
    4
    input
    1 1 1
    output
    1
    input
    2 3 3
    output
    2
    Note

    In the first sample you can decorate the tables with the following balloon sets: "rgg", "gbb", "brr", "rrg", where "r", "g" and "b" represent the red, green and blue balls, respectively.

      

    解题思路:贪心, 两个较小的两倍若比最大的那个小,这输出2个较小的和,否则输出3个的和的三分之一

      1 #include <stdio.h>

     2 
     3 int main(){
     4     long long r, g, b, ma, mi, mid, sum;
     5     while(scanf("%I64d %I64d %I64d", &r, &g, &b) != EOF){
     6         ma = mi = mid = r;
     7         sum = r + g + b;
     8         ma = ma > g ? ma : g;
     9         ma = ma > b ? ma : b;
    10         mi = mi < g ? mi : g;
    11         mi = mi < b ? mi : b;
    12         mid = sum - ma - mi;
    13         if(ma > 2 * (mid + mi)){
    14             printf("%I64d ", sum - ma);
    15         }
    16         else{
    17             printf("%I64d ", sum / 3);
    18         }
    19     }
    20     return 0;
    21 }
  • 相关阅读:
    JS运动---运动基础(匀速运动)
    浅谈浏览器解析 URL+DNS 域名解析+TCP 三次握手与四次挥手+浏览器渲染页面
    浅谈JS重绘与回流
    浅谈JS函数节流及应用场景
    浅谈JS函数防抖及应用场景
    前端模块化(CommonJs,AMD和CMD)
    Git之SSH公钥与私钥
    vi/vim编辑器必知必会
    git笔录
    vue移动端弹框组件,vue-layer-mobile
  • 原文地址:https://www.cnblogs.com/angle-qqs/p/4031988.html
Copyright © 2011-2022 走看看