• B. Valera and Contest 构造水题


    B. Valera and Contest
    time limit per test
    1 second
    memory limit per test
    256 megabytes
    input
    standard input
    output
    standard output

    Valera loves to participate in competitions. Especially in programming contests. Today he has participated in the contest with his team, consisting of n students (including Valera). This contest was an individual competition, so each student in the team solved problems individually.

    After the contest was over, Valera was interested in results. He found out that:

    • each student in the team scored at least l points and at most r points;
    • in total, all members of the team scored exactly sall points;
    • the total score of the k members of the team who scored the most points is equal to exactly sk; more formally, if a1, a2, ..., an is the sequence of points earned by the team of students in the non-increasing order (a1 ≥ a2 ≥ ... ≥ an), then sk = a1 + a2 + ... + ak.

    However, Valera did not find out exactly how many points each of n students scored. Valera asked you to recover any distribution of scores between the students of the team, such that all the conditions above are met.

    Input

    The first line of the input contains exactly six integers n, k, l, r, sall, sk (1 ≤ n, k, l, r ≤ 1000l ≤ rk ≤ n1 ≤ sk ≤ sall ≤ 106).

    It's guaranteed that the input is such that the answer exists.

    Output

    Print exactly n integers a1, a2, ..., an — the number of points each student scored. If there are multiple solutions, you can print any of them. You can print the distribution of points in any order.

    Sample test(s)
    input
    5 3 1 3 13 9
    output
    2 3 2 3 3 
    input
    5 3 1 3 15 9
    output
    3 3 3 3 3 

     注意n==k的情况:

    const int INF = 1000000000;
    const double eps = 1e-8;
    const int maxn = 30000;
    int ans[maxn];
    int main() 
    {
        //freopen("in.txt","r",stdin);
        int n,k,l,r,sa,sk;
        while(cin>>n>>k>>l>>r>>sa>>sk)
        {
            repf(i,1,n) ans[i] = l;
            int L = sk - l*k;
            int ll = L%k;
            repf(i,1,k) ans[i] += L/k;
            repf(i,1,k) if(ll) ll--,ans[i]++;
            if(k == n)
                goto here;
            L = sa - sk;
            L = L - l*(n - k);
            ll = L%(n - k);
            repf(i,k+1,n) ans[i] += L/(n - k);
            repf(i,k+1,n) if(ll) ll--,ans[i]++;
    here:
            repf(i,1,n)
                cout<<ans[i]<<" ";
            cout<<endl;
        }
        return 0;
    }
  • 相关阅读:
    今天冷兔上线.
    tweenlite
    AS3中对String操作的replaceAll方法
    咫尺天涯的幸福
    ESPCMS系统模板结构图
    [转]AIR中调用exe或者bat可执行文件
    摘自《做人还是现实些》
    framespacing="10"和border="10"在frameSet中有什么区别?
    一个简单的div与span例子
    理解Javascript_05_原型继承原理 ,转载文章
  • 原文地址:https://www.cnblogs.com/DreamHighWithMe/p/3451732.html
Copyright © 2020-2023  润新知