String is a very useful thing and a subsequence of the same string is equally important.
Now you have a string ss with length nn and a string tt with length mm. Find out the longest subsequence in the string ss so that the lexicographical order of this subsequence is strictly larger than tt.
two integers nn, mm in the first line
(All characters are lowercase letters)
The second line is a string ss
The third line is a string tt
Output an integer representing the longest length, otherwise output -1
.
样例输入1复制
9 3 aaabbbccc abc
样例输出1复制
6
样例输入2复制
9 3 aaabbbccc zzz
样例输出2复制
-1
题意:
给你n,m(1<=n,m<=1e6),再给你长度分别为n,m的两个字符串s和t,求s中字典序严格大于t的子序列的最长长度。如果不存在输出-1。
思路:
作为本场我第一个看的题,最后也没过。赛后发现一个细节写错了,菜的真实。
看似字符串题,实际上只需要贪心一下。因为是子序列,我们先找到s中第一个大于t[0]的字符的位置,s从这个位置剩下的串即为初始化的答案。如果s串中所有字符严格小于t串的字符,那就是-1。然后开始维护两个指针i,j,和一个相同前缀长度num,拿s[i]和t[j]比较,如果s[i]
然后num++,j++,i++,继续重复上述步骤,直到结束,判断一下i==n和j==m的情况。
对于pos的查找,我先用一个vector[i]存s串中严格大于字符i的所有字符的下标,然后二分查找即可。
(未必是最优的解法,但是可以过,欢迎提供更简洁易懂,复杂度更优的解法)
代码:
#pragma comment(linker,"/STACK:10240000,10240000") //防爆栈
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include