[leetcode] 1625. Lexicographically Smallest String After Applying Operations

Description

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’.

Example 1:

Input: s = "5525", a = 9, b = 2
Output: "2050"
Explanation: We can apply the following operations:
Start:  "5525"
Rotate: "2555"
Add:    "2454"
Add:    "2353"
Rotate: "5323"
Add:    "5222"
​​​​​​​Add:    "5121"
​​​​​​​Rotate: "2151"
​​​​​​​Add:    "2050"​​​​​​​​​​​​
There is no way to obtain a string that is lexicographically smaller then "2050".

Example 2:

Input: s = "74", a = 5, b = 1
Output: "24"
Explanation: We can apply the following operations:
Start:  "74"
Rotate: "47"
​​​​​​​Add:    "42"
​​​​​​​Rotate: "24"​​​​​​​​​​​​
There is no way to obtain a string that is lexicographically smaller then "24".

Example 3:

Input: s = "0011", a = 4, b = 2
Output: "0011"
Explanation: There are no sequence of operations that will give us a lexicographically smaller string than "0011".

Example 4:

Input: s = "43987654", a = 7, b = 3
Output: "00553311"

Constraints:

  • 2 <= s.length <= 100
  • s.length is even.
  • s consists of digits from 0 to 9 only.
  • 1 <= a <= 9
  • 1 <= b <= s.length - 1

分析

题目的意思是:给定一个字符串s,可以对字符串使用add和rotate操作,求能够得到的最小字符串。这道题最简单直接的思路就是把所能求得的字符串都列举出来,然后选一个最小就行了。

  • 实现add操作
  • 实现rotate操作
  • 队列q中放入s,然后遍历队列,把add和rotate操作拓展的字符串放回队列中;seen记录已经得到的字符串,防止重复计算。
  • 最终在seen中找到最小的字符串返回就行了。

代码

class Solution:
    def add(self,s,a):
        new_s=''
        for i in range(len(s)):
            if(i%2==0):
                new_s+=s[i]
            else:
                new_s+=str(int(s[i])+a)[-1]
        return new_s
    
    def rotate(self,s,b):
        return s[len(s)-b:]+s[:len(s)-b]
        
            
    def findLexSmallestString(self, s: str, a: int, b: int) -> str:
        seen=set()
        q=deque()
        q.append(s)
        while(q):
            cur=q.popleft()
            if(cur not in seen):
                seen.add(cur)
                q.append(self.add(cur,a))
                q.append(self.rotate(cur,b))
        # print(seen)
        return min(seen)

参考文献

Python, Easy to understand

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

农民小飞侠

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值