zoukankan      html  css  js  c++  java
  • Codeforces Round #311 (Div. 2)A Ilya and Diplomas

    【比赛链接】click here~~

    【题目大意】

    n个人,获取一到三等文凭,每门文凭有大小范围。求最后文凭各颁发多少

    【解题思路】直接枚举了,

    看完题,赶紧写了一发代码,发现竟然错过注冊时间。系统提示不能提交代码。真是醉了~~。以后还是得提前注冊:

    A题,比較简单:

    我去,昨天发的代码早上交上去竟然WA了,简直打脸~~

    更新一下代码哭

    代码:

    #include <iostream>
    #include <bits/stdc++.h>
    using namespace std;
    int main()
    {
        int n,m;
        int a1,a2;
        int b1,b2;
        int c1,c2;
        while(cin>>n)
        {
            cin>>a1>>a2;
            cin>>b1>>b2;
            cin>>c1>>c2;
            int max1,max2,max3;
            max1=min(n-b1-c1,a2);
            max2=min(n-max1-c1,b2);
            max3=n-max1-max2;
            cout<<max1<<" "<<max2<<" "<<max3<<endl;
        }
        return 0;
    }
    /*
    6
    1 5
    2 6
    3 7
    output
    1 2 3
    input
    10
    1 2
    1 3
    1 5
    output
    2 3 5
    input
    6
    1 3
    2 2
    2 2
    output
    2 2 2
    */
    


  • 相关阅读:
    4.8日学习
    Apache安装
    HTML5 review
    个人阅读作业LAST
    个人阅读作业Week7
    结对编程:界面模块总结
    个人博客作业Week3
    结对编程博客
    个人博客week2
    软工第一次作业简单总结
  • 原文地址:https://www.cnblogs.com/blfbuaa/p/7141694.html
Copyright © 2011-2022 走看看