题意
传送门 Codeforces 1295C Obtain The String
题解
建立 S S S 的序列自动机,每一次贪心的选择 S S S 中可匹配 T T T 剩余字符的最长子序列。若最优解出现某次选择中未取 S S S 满足条件的最长子序列,那么此次取最长子序列答案不会增大。
#include <algorithm>
#include <cmath>
#include <cstdio>
#include <cstring>
using namespace std;
#define maxc 26
#define maxn 100005
int t, nxt[maxn][maxc];
char S[maxn], T[maxn];
void init(char *s)
{
memset(nxt, 0, sizeof(nxt));
int len = strlen(s);
for (int i = len - 1; i >= 0; --i)
{
memcpy(nxt[i], nxt[i + 1], sizeof(nxt[i]));
nxt[i][s[i] - 'a'] = i + 1;
}
}
int main()
{
scanf("%d", &t);
while (t--)
{
scanf("%s %s", S, T);
init(S);
int p = 0, res = 0, len = strlen(T);
for (int i = 0; i < len; ++i)
{
int c = T[i] - 'a';
if (!nxt[p][c])
p = 0;
if (!p)
{
++res;
if (!nxt[p][c])
{
res = -1;
break;
}
}
p = nxt[p][c];
}
printf("%d\n", res);
}
return 0;
}