-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCF_1295C.cpp
68 lines (58 loc) · 1.01 KB
/
CF_1295C.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
#include <iostream>
#include <string>
using namespace std;
// dp[i][j]: j 문자가 i 이후부터 처음 나타나는 인덱스
int dp[200001][26];
const int INF = 987654321;
int main() {
int T;
cin >> T;
while (T--)
{
string s, t;
cin >> s >> t;
// init
for (int i = 0; i <= s.size(); i++)
{
for (int j = 0; j < 26; j++)
{
dp[i][j] = INF;
}
}
// precalculate
for (int i = s.size() - 1; i >= 0; i--)
{
for (int j = 0; j < 26; ++j)
{
dp[i][j] = dp[i + 1][j];
}
dp[i][s[i] - 'a'] = i;
}
int sidx = 0;
long long result = 1;
for (int i = 0; i < t.size(); i++)
{
// 문자가 뒤에 더 이상 없음 -> 처음부터 시작
if (sidx == s.size() || dp[sidx][t[i] - 'a'] == INF)
{
sidx = 0;
++result;
}
// impossible
if (dp[sidx][t[i] - 'a'] == INF && sidx == 0)
{
result = INF;
break;
}
sidx = dp[sidx][t[i] - 'a'] + 1;
}
if (result >= INF)
{
cout << -1 << endl;
}
else
{
cout << result << endl;
}
}
}