标签:参考 ref href static article log ISE 排列 链接
题目如题,输入序列只包含小写字母,数据范围0<k<=len<=500000。
例:
输入:helloworld
输出:ellld
import java.util.Collections;
import java.util.LinkedList;
import java.util.Scanner;
import java.util.Stack;
public class subStr {
public static void main(String args[]) {
Scanner in=new Scanner(System.in);
String str=in.next();
int k=in.nextInt();
Stack<Character> stack=new Stack<>();
int cntToDel=str.length()-k;
for(int i=0;i<str.length();++i) {
while(!stack.isEmpty()&&cntToDel!=0&&stack.peek()>str.charAt(i)) {
stack.pop();
--cntToDel;
}
//如果已经删了n-k个元素
if(cntToDel==0) {
LinkedList<Character> list=new LinkedList<>();
while(!stack.isEmpty()) {
list.add(stack.pop());
}
Collections.reverse(list);
for(Character c:list) {
System.out.print(c);
}
String tailStr=str.substring(i,str.length());
System.out.print(tailStr);
return;
}
stack.add(str.charAt(i));
}
//字符串完成了一遍遍历,输出单调栈底下的k个。
LinkedList<Character> list=new LinkedList<>();
while(!stack.isEmpty()) {
list.add(stack.pop());
}
Collections.reverse(list);
String subStr=str.substring(0,k);
System.out.print(subStr);
}
}
https://blog.csdn.net/ljd201724114126/article/details/80663855
[补题]找到原序列长度k的子序列中字典序最小的那个(单调栈)
标签:参考 ref href static article log ISE 排列 链接
原文地址:https://www.cnblogs.com/coding-gaga/p/11032539.html