import java.util.*; public class Main { public static void main(String[] args) { Scanner in = new Scanner(System.in); Stack<Integer> stack= new Stack<>(); stack.add(0); //cnt代表第几次遇到反常,i维护下标 int i=-1,cnt=0; int m=0,n=0; while (in.hasNextInt()) {// 注意,如果输入是多个测试用例,请通过while循环处理多个测试用例 int a = in.nextInt(); i++; int peek=stack.peek(); if(a<peek){ if(cnt==0){ m=i; }else{ n=i+1; System.out.print(m + " " + n); } cnt++; } stack.add(a); } } } 可以参考一下哈,写的很菜😅
1 2

相关推荐

今天 11:23
重庆邮电大学 C++
点赞 评论 收藏
分享
面试摇了我吧:啊哈哈面试提前五个小时发,点击不能参加就是放弃
点赞 评论 收藏
分享
牛客网
牛客企业服务