[LeetCode] Lexicographically Smallest String After Applying Operations

1625. Lexicographically Smallest String After Applying Operations

You are given a string s of even length consisting of digits from 0 to 9, and two integers a and b.

You can apply either of the following two operations any number of times and in any order on s:

  • Add a to all odd indices of s (0-indexed). Digits post 9 are cycled back to 0. For example, if s = “3456” and a = 5, s becomes “3951”.
  • Rotate s to the right by b positions. For example, if s = “3456” and b = 1, s becomes “6345”.

Return the lexicographically smallest string you can obtain by applying the above operations any number of times on s.

A string a is lexicographically smaller than a string b (of the same length) if in the first position where a and b differ, string a has a letter that appears earlier in the alphabet than the corresponding letter in b. For example, “0158” is lexicographically smaller than “0190” because the first position they differ is at the third letter, and ‘5’ comes before ‘9’.

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
class Solution {
public:
string findLexSmallestString(string s, int a, int b) {
unordered_set<string> us;
queue<string> q;
string res = s;
q.push(s);
while(!q.empty()) {
auto now = q.front(); q.pop();
auto rotate = now.substr(now.length() - b) + now.substr(0,now.length() - b);
if(!us.count(rotate)) {
us.insert(rotate);
q.push(rotate);
res = min(res, rotate);
}
for(int i = 1; i < now.length(); i += 2) {
now[i] = (now[i] - '0' + a) % 10 + '0';
}
if(!us.count(now)) {
us.insert(now);
q.push(now);
res = min(res, now);
}
}
return res;
}
};
Author: Song Hayoung
Link: https://songhayoung.github.io/2022/08/17/PS/LeetCode/lexicographically-smallest-string-after-applying-operations/
Copyright Notice: All articles in this blog are licensed under CC BY-NC-SA 4.0 unless stating additionally.