zoukankan      html  css  js  c++  java
  • Codeforces Round #375 (Div. 2) C. Polycarp at the Radio

    C. Polycarp at the Radio
    time limit per test
    2 seconds
    memory limit per test
    256 megabytes
    input
    standard input
    output
    standard output

    Polycarp is a music editor at the radio station. He received a playlist for tomorrow, that can be represented as a sequence a1, a2, ..., an, where ai is a band, which performs the i-th song. Polycarp likes bands with the numbers from 1 to m, but he doesn't really like others.

    We define as bj the number of songs the group j is going to perform tomorrow. Polycarp wants to change the playlist in such a way that the minimum among the numbers b1, b2, ..., bm will be as large as possible.

    Find this maximum possible value of the minimum among the bj (1 ≤ j ≤ m), and the minimum number of changes in the playlist Polycarp needs to make to achieve it. One change in the playlist is a replacement of the performer of the i-th song with any other group.

    Input

    The first line of the input contains two integers n and m (1 ≤ m ≤ n ≤ 2000).

    The second line contains n integers a1, a2, ..., an (1 ≤ ai ≤ 109), where ai is the performer of the i-th song.

    Output

    In the first line print two integers: the maximum possible value of the minimum among the bj (1 ≤ j ≤ m), where bj is the number of songs in the changed playlist performed by the j-th band, and the minimum number of changes in the playlist Polycarp needs to make.

    In the second line print the changed playlist.

    If there are multiple answers, print any of them.

    Examples
    input
    4 2
    1 2 3 2
    output
    2 1
    1 2 1 2



    input
    7 3
    1 3 2 2 2 2 1
    output
    2 1
    1 3 3 2 2 2 1



    input
    4 4
    1000000000 100 7 1000000000
    output
    1 4
    1 2 3 4

    显然最优解为1~m平分n,因此给1~m分配n/m个曲子。

    #include <bits/stdc++.h>
    using namespace std;
    #define ll long long
    const int maxn = 2010;
    int a[maxn];
    int main() {
        int n, m;
        while(~scanf("%d %d", &n, &m)) {
            map<int, int> mp;
            map<int, int> need;
            int cnt = n / m;
            int yu = n % m;
            int cnt2 = 0;
            for(int i = 1; i <= n; i++) {
                scanf("%d", &a[i]);
                mp[a[i]]++;
                if(a[i] <= m)
                    cnt2++;
            }
            for(int i = 1; i <= m; i++) {
                need[i] = cnt - mp[i];
            }
            int ans = 0;
            for(int i = 1; i <= n; i++) {
                //printf("debug %d %d
    ", a[i], need[a[i]]);
                if(a[i] > m) {
                    for(auto it = need.begin(); it != need.end(); it++) {
                        //printf("check %d %d
    ", it -> first, it -> second);
                        if(it -> second > 0) {
                            it -> second = it -> second - 1;
                            a[i] = it -> first;
                            ans++;
                            break;
                        }
                    }
                }
                else if(need[a[i]] <= -1) {
                    for(auto it = need.begin(); it != need.end(); it++) {
                        //printf("check %d %d
    ", it -> first, it -> second);
                        if(it -> second > 0) {
                            it -> second = it -> second - 1;
                            need[a[i]]++;
                            a[i] = it -> first;
                            ans++;
                            break;
                        }
                    }
                }
            }
            printf("%d %d
    ", cnt, ans);
            for(int i = 1; i <= n; i++) {
                printf("%d ", a[i]);
            }puts("");
        }
    }
  • 相关阅读:
    【java】jfairy和java-faker假数据利器
    【Spring boot】【gradle】idea新建spring boot+gradle项目
    【mac】mac上使用brew 安装速度慢/每次使用brew 都会卡在updating homebrew不动/更换homebrew的镜像源
    【gradle】mac上安装gradle
    【mac】mac上安装JDK
    如何解决ajax跨域问题(转)
    java实现点选汉字验证码(自己修改后的)
    AES加解密
    java随机打乱集合顺序
    利用StringEscapeUtils对字符串进行各种转义与反转义(Java)
  • 原文地址:https://www.cnblogs.com/lonewanderer/p/5929799.html
Copyright © 2011-2022 走看看