• 【78.89%】【codeforces 746A】Compote


    time limit per test1 second
    memory limit per test256 megabytes
    inputstandard input
    outputstandard output
    Nikolay has a lemons, b apples and c pears. He decided to cook a compote. According to the recipe the fruits should be in the ratio 1: 2: 4. It means that for each lemon in the compote should be exactly 2 apples and exactly 4 pears. You can’t crumble up, break up or cut these fruits into pieces. These fruits — lemons, apples and pears — should be put in the compote as whole fruits.

    Your task is to determine the maximum total number of lemons, apples and pears from which Nikolay can cook the compote. It is possible that Nikolay can’t use any fruits, in this case print 0.

    Input
    The first line contains the positive integer a (1 ≤ a ≤ 1000) — the number of lemons Nikolay has.

    The second line contains the positive integer b (1 ≤ b ≤ 1000) — the number of apples Nikolay has.

    The third line contains the positive integer c (1 ≤ c ≤ 1000) — the number of pears Nikolay has.

    Output
    Print the maximum total number of lemons, apples and pears from which Nikolay can cook the compote.

    Examples
    input
    2
    5
    7
    output
    7
    input
    4
    7
    13
    output
    21
    input
    2
    3
    2
    output
    0
    Note
    In the first example Nikolay can use 1 lemon, 2 apples and 4 pears, so the answer is 1 + 2 + 4 = 7.

    In the second example Nikolay can use 3 lemons, 6 apples and 12 pears, so the answer is 3 + 6 + 12 = 21.

    In the third example Nikolay don’t have enough pears to cook any compote, so the answer is 0.

    【题目链接】:http://codeforces.com/contest/746/problem/A

    【题解】

    a+1,b+2,c+4;
    看看能不能加就好;
    能加一直加;
    最后全部加起来就是答案;

    【完整代码】

    #include <bits/stdc++.h>
    using namespace std;
    #define lson l,m,rt<<1
    #define rson m+1,r,rt<<1|1
    #define LL long long
    #define rep1(i,a,b) for (int i = a;i <= b;i++)
    #define rep2(i,a,b) for (int i = a;i >= b;i--)
    #define mp make_pair
    #define pb push_back
    #define fi first
    #define se second
    #define rei(x) scanf("%d",&x)
    #define rel(x) scanf("%I64d",&x)
    
    typedef pair<int,int> pii;
    typedef pair<LL,LL> pll;
    
    //const int MAXN = x;
    const int dx[9] = {0,1,-1,0,0,-1,-1,1,1};
    const int dy[9] = {0,0,0,-1,1,-1,1,-1,1};
    const double pi = acos(-1.0);
    
    int a[4];
    int ma,mb,mc;
    
    int main()
    {
        //freopen("F:\rush.txt","r",stdin);
        rei(ma);rei(mb);rei(mc);
        a[1] = 1,a[2] = 2,a[3] = 4;
        LL x = 0,y = 0,z = 0;
        while (x+a[1] <= ma && y+a[2] <= mb && z+a[3] <= mc)
        {
            x+=a[1],y+=a[2],z+=a[3];
        }
        cout << x + y +z;
        return 0;
    }
  • 相关阅读:
    #import &lt;/usr/include/objc/objc-class.h&gt; not such file or directory问题的解决方法
    关于二进制补码
    DirectSound的应用
    Qt on Android: http下载与Json解析
    双绞线的制作,T568A线序,T568B线序
    Java设计模式之从[暗黑破坏神存档点]分析备忘录(Memento)模式
    linux 系统升级中的一些配置
    malloc函数具体解释
    老鸟的Python新手教程
    ubuntu12.04 安装配置jdk1.7
  • 原文地址:https://www.cnblogs.com/AWCXV/p/7626801.html
Copyright © 2020-2023  润新知