Nearest Beautiful Number (hard version)

Nearest Beautiful Number (hard version)

Created by LXC on Tue Feb 6 12:53:50 2024

https://codeforces.com/problemset/problem/1560/F2

ranting: 2100

tag: bitmasks, brute force, constructive algorithms, dfs and similar, dp, greedy

problem

给定数据组数 $t$,每组数据包含正整数 $n$、$k$,求满足 $x\geq n$ 的最小正整数 $x$,使 $x$ 是个 $k$-beautiful 数。

一个正整数是个 $k$-beautiful 数,当且仅当其无前导零的十进制数值表示中,不同的数字不超过 $k$ 个。

数据满足 $1 \leq t \leq 10^4$,$1 \leq n \leq 10^9$,$1 \leq k \leq 10$。

solution

高位贪心枚举

当x大于n时,势必有一位$i$,$x_i>n_i$

我们可以从大到小枚举$i$,然后保留$i$之前的前缀,修改$n_i$为$9$到$n_i+1$之间的数,并统计已出现的字符数。然后如果小于k则后续可以全置为0,等于k则置为已出现数字中最小的一个,大于k当前无解。

code

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68

#include <bits/stdc++.h>
// #define SINGLE_INPUT
#define ll long long
#define ull unsigned long long
#define N 500005
#define MOD 998244353
using namespace std;

template<class t,class u> ostream& operator<<(ostream& os,const pair<t,u>& p) {
return os<<'['<<p.first<<", "<<p.second<<']';
}
template<class t> ostream& operator<<(ostream& os,const vector<t>& v) {
os<<'['; int s = 1;
for(auto e:v) { if (s) s = 0; else os << ", "; os << e; }
return os<<']';
}
template<class t,class u> ostream& operator<<(ostream& os,const map<t,u>& mp){
os<<'{'; int s = 1;
for(auto [x,y]:mp) { if (s) s = 0; else os << ", "; os<<x<<": "<<y; }
return os<<'}';
}

void sol() {
string s;
int k;
cin >> s >> k;
int m = s.size();
vector<int> c(10);
string ans = "1" + string(m, '0');
string pre;
for (int i=0; i<m; pre.push_back(s[i]), c[s[i]-'0'] = 1, i++) {
for (int j=9; j>s[i]-'0'; j--) {
auto cc = c;
cc[j] = 1;
int ap = count(cc.begin(), cc.end(), 1);
if (ap > k) continue;
int mn = 0;
if (ap==k) {
while (cc[mn] == 0) mn++;
}
// cout << i << " " << string(1, char(s[i]+1)) << endl;
ans = pre + char(j+'0') + string(max(0,m-1-i), char(mn+'0'));
}
}
if (count(c.begin(), c.end(), 1) <= k) {
ans = s;
// cout << "adf" << endl;
}
cout << ans << "\n";
}

int main() {
cout << setprecision(15) << fixed;
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
#ifndef SINGLE_INPUT
int t;
cin >> t;
while (t--) {
sol();
}
#else
sol();
#endif
return 0;
}