zoukankan      html  css  js  c++  java
  • 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;
    }
  • 相关阅读:
    2021-06-13 助教一周小结(第十九周)
    2021-06-06 助教一周小结(第十八周)
    2021-05-30 助教一周小结(第十七周)
    2021-05-23 助教一周小结(第十六周)
    2021-05-15 助教一周小结(第十五周)
    2021-05-09 助教一周小结(第十四周)
    个人总结-逆风方向,适合飞翔
    第二次结对作业
    结对作业
    随笔排版如何插入比较好看的样式。
  • 原文地址:https://www.cnblogs.com/DreamHighWithMe/p/3451732.html
Copyright © 2011-2022 走看看