题解 | #MP3光标位置#python3

class xnttwxn_solution():
    def __init__(self,song,pos,process):
        self.song = song
        self.pos = pos
        self.process = process

    def songdan(self):
        songlist = [i for i in range(1,self.song+1)]
        current = 0
        end = 3
        for ele in self.process:
            if current==0 and ele=="U":
                end = self.song-1
                current = self.song-1
            elif current==self.song-1 and ele=="D":
                end = 3
                current = 0
            else:
                current += int(self.pos[ele])
                if ele=="D" and current>end:
                    end+=1
                if ele=="U" and current<end-3:
                    end-=1
        result = songlist[end-3:end+1]
        final = str(result).replace("[","").replace("]","").replace(",","")
        print(final)
        print(songlist[current])

if __name__=="__main__":
    num = int(input())
    process = input()
    pos = {"U": -1, "D": 1}
    sample = xnttwxn_solution(num,pos,process)
    sample.songdan()

全部评论
默默学习
点赞 回复 分享
发布于 2022-10-24 17:39 陕西

相关推荐

10-11 17:45
门头沟学院 Java
走吗:别怕 我以前也是这么认为 虽然一面就挂 但是颇有收获!
点赞 评论 收藏
分享
我是小红是我:学校换成中南
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务