-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathPrefix Subsequences.cpp
58 lines (52 loc) · 1.01 KB
/
Prefix Subsequences.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
// { Driver Code Starts
// Initial Template for C++
#include <bits/stdc++.h>
using namespace std;
// } Driver Code Ends
// User function Template for C++
class Solution
{
public:
int maximumPrefix(int n, int m, string s, string t)
{
// code here
int j = 0;
for (int i = 0; i < n; i++)
{
bool flag = false;
while (j < m)
{
if (t[j] == s[i])
{
flag = true;
j++;
break;
}
j++;
}
if (flag == false)
{
return i + 1;
}
}
return -1;
}
};
// { Driver Code Starts.
int main()
{
int c;
cin >> c;
while (c--)
{
int n, m;
cin >> n >> m;
string s, t;
cin >> s >> t;
Solution obj;
int ans = obj.maximumPrefix(n, m, s, t);
cout << ans << "\n";
}
return 0;
}
// } Driver Code Ends