0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-11-08 18:38:47 +00:00
OI-codes/Codeforces/1675/E/E.cpp

55 lines
920 B
C++
Raw Permalink Normal View History

#include <iostream>
#include <string>
using std::cin;
using std::cout;
const char endl = '\n';
const int N = 2e5 + 5;
int t, n, k, max, a[30];
std::string s;
signed main() {
std::ios::sync_with_stdio(false);
cin >> t;
while (t--) {
max = 0;
for (int i = 0; i < 26; i++) {
a[i] = i;
}
cin >> n >> k >> s;
for (int i = 0; i < s.size(); i++) {
int x = s[i] - 'a';
if (x > k) {
int t = x - (k - max);
for (int j = x; j >= t; j--) {
a[j] = t;
}
break;
}
for (int j = x; ~j; j--) {
a[j] = 0;
}
max = std::max(max, x);
}
for (int i = 0; i < s.size(); i++) {
cout << char(a[s[i] - 'a'] + 'a');
}
cout << endl;
}
return 0;
}