zoukankan      html  css  js  c++  java
  • Codeforces Round #294 (Div. 2)——C——A and B and Team Training

    A and B are preparing themselves for programming contests.

    An important part of preparing for a competition is sharing programming knowledge from the experienced members to those who are just beginning to deal with the contests. Therefore, during the next team training A decided to make teams so that newbies are solving problems together with experienced participants.

    A believes that the optimal team of three people should consist of one experienced participant and two newbies. Thus, each experienced participant can share the experience with a large number of people.

    However, B believes that the optimal team should have two experienced members plus one newbie. Thus, each newbie can gain more knowledge and experience.

    As a result, A and B have decided that all the teams during the training session should belong to one of the two types described above. Furthermore, they agree that the total number of teams should be as much as possible.

    There are n experienced members and m newbies on the training session. Can you calculate what maximum number of teams can be formed?

    Input

    The first line contains two integers n and m (0 ≤ n, m ≤ 5·105) — the number of experienced participants and newbies that are present at the training session.

    Output

    Print the maximum number of teams that can be formed.

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

    Let's represent the experienced players as XP and newbies as NB.

    In the first test the teams look as follows: (XP, NB, NB), (XP, NB, NB).

    In the second test sample the teams look as follows: (XP, NB, NB), (XP, NB, NB), (XP, XP, NB).

    大意:有两种组合,1大人2小孩,2大人1小孩(不要在意细节!),问你多少种组合最多

    因为最后要么是全部的m用完要么是全部的n用完要么是(m+n)/3(每一组都三个),没有别的情况了只要取这三个里面的最小值就行。

    #include<cstdio>
    #include<algorithm>
    using namespace std;
    int n,m;
    int mine(int a,int b,int c){
    return min(min(a,b),min(b,c));
    }
    int main()
    {
        while(~scanf("%d%d",&n,&m))
            printf("%d
    ",mine(n,m,(n+m)/3));
       return 0;
    }
    View Code
  • 相关阅读:
    Redis安装使用
    Freeswitch(四):使用java esl写一个FreeSwitchEventListener 服务
    Freeswitch(三):常用配置
    FreeSwitch(一):安装
    常用SQL之:统计重复数据的条数
    常用SQL之:递归查询
    常用SQL之:存储过程事务回滚
    常用SQL之:联表更新
    初学java——关于类、构造方法、变量、属性
    eclipse的一些实用快捷键
  • 原文地址:https://www.cnblogs.com/zero-begin/p/4350064.html
Copyright © 2011-2022 走看看