菜鸡1号


私信TA

用户名:uq_69651989863

访问量:1472

签 名:

等  级
排  名 1220
经  验 3089
参赛次数 0
文章发表 48
年  龄 0
在职情况 学生
学  校
专  业

  自我简介:

TA的其他文章

表达式括号匹配
浏览:107
堆栈的使用
浏览:25
行编辑程序
浏览:24

解题思路:

注意事项:

参考代码:

def trainSchedule(n, order):

    stack = []

    next_car = 1

    

    for car in order:

        while (len(stack) == 0 or stack[-1] != car) and next_car <= n:

            stack.append(next_car)

            next_car += 1

        

        if stack[-1] == car:

            stack.pop()

        else:

            return "NO"

    

    return "YES"


# 读取输入

n = int(input())

order = list(map(int, input().split()))


# 调度车厢并判断能否得到指定的顺序

result = trainSchedule(n, order)


# 输出结果

print(result)


 

0.0分

3 人评分

  评论区

  • «
  • »