蓝桥备战--分糖果OJ2928 贪心 分类讨论

发布时间:2024年01月21日

题目:

思路:

首先排序(经验之谈)

分类讨论

我们要做到不重不漏的分类

代码:

#include <iostream>
#include <algorithm>
using namespace std;

const int N = 1e6 + 10;

char dist[N];
int n, x;

int main()
{
    string str;
    cin >> n >> x >> dist + 1;

    sort (dist + 1, dist + n + 1);

    dist[0] = dist[1];//当x = 1时也符合第二种情况
    if (dist[1] == dist[n])
        for (int i = 1; i <= n / x + (n % x ? 1 : 0); i++)
            cout << dist[i];
    else if (dist[x] == dist[1])
        for (int i = x; i <= n; i++)
            cout << dist[i];
    else 
        cout << dist[x];
    return 0;
}

文章来源:https://blog.csdn.net/weixin_73303171/article/details/135726165
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。