Early Orders
这道题的题意很简单,就是给你一个数字序列,大小在1~k之间,长度为n,题目要求我们找一个最小的字典序序列。
显然,这道题是单调栈的思想,我们用一个ans数组存答案,我们我们可以先把第一个数存进去,遇到比它小的,就把它换掉,当然,被换掉的数后面还要存在,不然我们会漏掉一些数,这个时候我们就要记录一下每个数出现的次数了,同样地,遇到比ans最后一个大的也存进去,当然,这个数要是ans里面没有出现过的,我们用vis数组标记一下。
#include<bits/stdc++.h> using namespace std; typedef long long ll; const int INF = 0x3f3f3f3f; const ll mod=1e9+7; const ll N=2e5+7; inline ll read() { ll s = 0, w = 1; char ch = getchar(); while (ch < 48 || ch > 57) { if (ch == '-') w = -1; ch = getchar(); } while (ch >= 48 && ch <= 57) s = (s << 1) + (s << 3) + (ch ^ 48), ch = getchar(); return s * w; } inline void write(ll m) { if (!m) { putchar('0'); return; } char F[200]; ll tmp = m > 0 ? m : -m; if (m < 0)putchar('-'); int cnt = 0; while (tmp > 0) { F[cnt++] = tmp % 10 + '0'; tmp /= 10; } while (cnt > 0)putchar(F[--cnt]); } inline ll gcd(ll m, ll y) { return y ? gcd(y, m % y) : m; } ll a[N], ans[N] ,cnt[N]; bool vis[N]; int main(){ ll n = read(), k = read(); for(int i = 1; i <= n; i ++) a[i] = read(),cnt[a[i]]++; ll pos = 1; ans[pos] = a[1]; cnt[a[1]]--; for(int i = 2;i <= n; i++){ if(vis[a[i]]) { cnt[a[i]]--; continue; } vis[a[i]] = true; cnt[a[i]]--; if(a[i] > ans[pos]) ans[++pos] = a[i]; else{ while(pos >= 1 && cnt[ans[pos]] && a[i] < ans[pos]) vis[ans[pos]]=false,--pos; ans[++pos] = a[i]; } } for(int i = 1;i <= pos; i++) printf("%ld ",ans[i]); printf("\n"); }