SAMER08D - DNA Sequences


Thomas, a computer scientist that works with DNA sequences, needs to compute longest common subsequences of given pairs of strings. Consider an alphabet Σ of letters and a word w=a1a2ar, where ai ∈ Σ, for i = 1, 2, …,r. A subsequence of w is a word x=ai1ai2ais such that 1 ≤ i1 < i2 < … < isr. Subsequence x is a segment of w if ij+1=ij + 1, for j = 1,2, …,s -1. For example the word ove is a segment of the word lovely, whereas the word loly is a subsequence of lovely, but not a segment.

A word is a common subsequence of two words w1 and w2 if it is a subsequence of each of the two words. A longest common subsequence of w1 and w2 is a common subsequence of w1 and w2 having the largest possible length. For example, consider the words w1=lovxxelyxxxxx and w2=xxxxxxxlovely. The words w3=lovely and w4=xxxxxxx, the latter of length 7, are both common subsequences of w1 and w2. In fact, w4 is their longest common subsequence. Notice that the empty word, of length zero, is always a common subsequence, although not necessarily the longest.

In the case of Thomas, there is an extra requirement: the subsequence must be formed from common segments having length K or more. For example, if Thomas decides that K=3, then he considers lovely to be an acceptable common subsequence of lovxxelyxxxxx and xxxxxxxlovely, whereas xxxxxxx, which has length 7 and is also a common subsequence, is not acceptable. Can you help Thomas?

Input

The input contains several test cases. The first line of a test case contains an integer K representing the minimum length of common segments, where 1 ≤ K ≤ 100. The next two lines contain each a string on lowercase letters from the regular alphabet of 26 letters. The length l of each string satisfies the inequality 1 ≤ l ≤ 103. There are no spaces on any line in the input. The end of the input is indicated by a line containing a zero.

Output

For each test case in the input, your program must print a single line, containing the length of the longest subsequence formed by consecutive segments of length at least K from both strings. If no such common subsequence of length greater than zero exists, then 0 must be printed.

Example

Input:
3
lovxxelyxxxxx
xxxxxxxlovely
1
lovxxelyxxxxx
xxxxxxxlovely
3
lovxxxelxyxxxx
xxxlovelyxxxxxxx
4
lovxxxelyxxx
xxxxxxlovely
0

Output:
6
7
10
0

hide comments
kira49: 2021-01-04 18:21:50

:(

karthikeyahs: 2020-07-09 09:36:41

For 3rd test case, in the first string select 'lovxxx''xxxx' and in the second string select 'lov''xxxxxxx'

prabhat7298: 2019-09-02 22:58:53

How's the output of this sample input is 10
3
lovxxxelxyxxxx
xxxlovelyxxxxxxx

devarshi09: 2019-05-10 14:29:53

Test cases are weak. O(N^3) solution passed.

shubham_04_04: 2018-10-26 14:10:22

:(

Last edit: 2018-10-26 15:57:21
damu_k: 2018-09-26 16:48:02

Can anyone tell how the output of third test case is 10 instead of 8

kingfran1907: 2018-07-19 15:42:26

Much easier with splay tree

paroaro: 2018-07-19 10:30:08

AC in one go with splay :D

markomafko972: 2018-07-19 10:29:41

no need for dp, just use splay

s_a_k_s_h_a_m: 2018-06-15 14:25:33

go for iterative way instead of recursive
longest commom subsequence + longest common substring
(I^3) will pass the test cases


Added by:Diego Satoba
Date:2008-11-23
Time limit:1s
Source limit:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:C C++ 4.3.2 CPP JAVA PAS-GPC PAS-FPC
Resource:South American Regional Contests 2008