Gym - 102423J

J - One of Each(贪心,栈)

大佬的代码,tql。
打比赛的时候没想出来,过后看了看这个代码。
用桶排序的思想,记录每个数字出现的个数,然后用栈实现最小的字典序输出。桶的作用就是判断这个数是不是最后一个数字,如果是最后一个数字就不得不去选了,然后栈的作用就是尽可能将前面的数字变小,如果栈顶的数后面还有,且要插入的数字比这个数小的话,就将栈顶出栈,然后将更小的数入栈。具体代码如下:

#include <bits/stdc++.h>
#define LL long long
using namespace std;
const int maxn = 2e3 + 10;
const double PI = acos(-1.0);
typedef pair<int, int> PII;
int a[maxn], tong[maxn];
bool vis[maxn];
vector<int> ans;
int main(int argc, char const *argv[]) {
    int n, k;
    cin >> n >> k;
    for (int i = 0; i < n; i++) {
        scanf("%d", &a[i]);
        tong[a[i]]++;
    }
    stack<int> sta;
    for (int i = 0; i < n; i++) {
        if (vis[a[i]]) {
            tong[a[i]]--;
            continue;
        }
        while (sta.size() && a[i] < sta.top() && tong[sta.top()] != 0) {
            vis[sta.top()] = 0;
            sta.pop();
        }
        sta.push(a[i]);
        vis[a[i]] = 1;
        tong[a[i]]--;
    }
    while (sta.size()) {
        ans.push_back(sta.top());
        sta.pop();
    }
    for (int i = ans.size() - 1; i >= 0; i--) {
        printf("%d%c", ans[i], i == 0 ? '\n' : ' ');
    }
    return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值