题解 | #玛雅人的密码#

玛雅人的密码

https://www.nowcoder.com/practice/761fc1e2f03742c2aa929c19ba96dbb0

def hyx(s: str, index: int):#实现数字互换
    x = list(s)
    x[index], x[index + 1] = x[index + 1], x[index]
    s = "".join(x)
    return s


def maya(n, x: str):#求解最少次数
    if "2012" in x:
        return 0
    if x.count("2") < 2 or x.count("1") < 1 or x.count("0") < 1:
        return -1
    ct = 0
    ans = []
    ans.append(x)
    zc = []
    while True:
        ans += zc
        for s in ans:#遍历每一层
            for i in range(len(s) - 1):#每一层内遍历检查
                if "2012" in s:
                    return ct
                zc.append(hyx(s, i))
        ct += 1


while True:
    try:
        n = int(input())
        s = input()
        print(maya(n, s))
    except:
        break

全部评论

相关推荐

威猛的小饼干正在背八股:挂到根本不想整理
点赞 评论 收藏
分享
10-25 12:05
已编辑
湖南科技大学 Java
若梦难了:我有你这简历,已经大厂乱杀了
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务