力扣题目系列:1370. 上升下降字符串(Python题解)

刷题系列博客链接:机试题目

目录

题目及示例

我的题解 


题目及示例

给你一个字符串 s ,请你根据下面的算法重新构造字符串:

从 s 中选出 最小 的字符,将它 接在 结果字符串的后面。
从 s 剩余字符中选出 最小 的字符,且该字符比上一个添加的字符大,将它 接在 结果字符串后面。
重复步骤 2 ,直到你没法从 s 中选择字符。
从 s 中选出 最大 的字符,将它 接在 结果字符串的后面。
从 s 剩余字符中选出 最大 的字符,且该字符比上一个添加的字符小,将它 接在 结果字符串后面。
重复步骤 5 ,直到你没法从 s 中选择字符。
重复步骤 1 到 6 ,直到 s 中所有字符都已经被选过。
在任何一步中,如果最小或者最大字符不止一个 ,你可以选择其中任意一个,并将其添加到结果字符串。

请你返回将 s 中字符重新排序后的 结果字符串 。

示例 1:

输入:s = "aaaabbbbcccc"
输出:"abccbaabccba"
解释:第一轮的步骤 1,2,3 后,结果字符串为 result = "abc"
第一轮的步骤 4,5,6 后,结果字符串为 result = "abccba"
第一轮结束,现在 s = "aabbcc" ,我们再次回到步骤 1
第二轮的步骤 1,2,3 后,结果字符串为 result = "abccbaabc"
第二轮的步骤 4,5,6 后,结果字符串为 result = "abccbaabccba"
示例 2:

输入:s = "rat"
输出:"art"
解释:单词 "rat" 在上述算法重排序以后变成 "art"
示例 3:

输入:s = "leetcode"
输出:"cdelotee"
示例 4:

输入:s = "ggggggg"
输出:"ggggggg"
示例 5:

输入:s = "spo"
输出:"ops"

提示:

1 <= s.length <= 500
s 只包含小写英文字母。

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/increasing-decreasing-string
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

我的题解 

# 超出时间限制
class Solution(object):
    def sortString(self, s):
        arr = list(s)
        res = ''
        tmax = '{'
        tmin = 'Z'
        # max>z,min<a
        while len(arr)!=0 :
            arr.sort(reverse=True) 
            while arr[len(arr)-1] > tmin :
                tmin = arr[len(arr)-1]
                res += tmin
                arr.pop
            arr.sort() 
            while arr[len(arr)-1] < tmax :
                tmax = arr[len(arr)-1]
                res += tmax
                arr.pop
        return res
# 别人的,没超
class Solution:
    def sortString(self, s):
        if len(s) <= 1:
            return s
        s = sorted(s)
        res, last = "", ""
        times = 0
        while s:
            total = 0
            if times % 2 == 0:
                for i in range(len(s)):
                    if last != s[i-total]:
                        res += s[i-total]
                        last = s[i-total]
                        s.remove(s[i-total])
                        total += 1
            else:
                for i in range(len(s)-1, -1, -1):
                    if last != s[i]:
                        res += s[i]
                        last = s[i]
                        s.remove(s[i])
            last = ""
            times += 1
        return res

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值