单调栈 1.题目2.基本思想3.代码实现 1.题目 给定一个长度为 N N N 的整数数列,输出每个数左边第一个比它小的数,如果不存在则输出 − 1 −1 −1。 输入格式 第一行包含整数 N N N,表示数列长度。 第二行包含 N N N 个整数,表示整数数列。 输出格式 共一行,包含 N N N 个整数,其中第 i i i个数表示第 i i i 个数的左
Problem In a string s of lowercase letters, these letters form consecutive groups of the same character. For example, a string like s = “abbxxxxzyy” has the groups “a”, “bb”, “xxxx”, “z”, and “yy”.