#P1446B. Catching Cheaters

Catching Cheaters

No submission language available for this problem.

Description

You are given two strings AA and BB representing essays of two students who are suspected cheaters. For any two strings CC, DD we define their similarity score S(C,D)S(C,D) as 4LCS(C,D)CD4\cdot LCS(C,D) - |C| - |D|, where LCS(C,D)LCS(C,D) denotes the length of the Longest Common Subsequence of strings CC and DD.

You believe that only some part of the essays could have been copied, therefore you're interested in their substrings.

Calculate the maximal similarity score over all pairs of substrings. More formally, output maximal S(C,D)S(C, D) over all pairs (C,D)(C, D), where CC is some substring of AA, and DD is some substring of BB.

If XX is a string, X|X| denotes its length.

A string aa is a substring of a string bb if aa can be obtained from bb by deletion of several (possibly, zero or all) characters from the beginning and several (possibly, zero or all) characters from the end.

A string aa is a subsequence of a string bb if aa can be obtained from bb by deletion of several (possibly, zero or all) characters.

Pay attention to the difference between the substring and subsequence, as they both appear in the problem statement.

You may wish to read the Wikipedia page about the Longest Common Subsequence problem.

The first line contains two positive integers nn and mm (1n,m50001 \leq n, m \leq 5000) — lengths of the two strings AA and BB.

The second line contains a string consisting of nn lowercase Latin letters — string AA.

The third line contains a string consisting of mm lowercase Latin letters — string BB.

Output maximal S(C,D)S(C, D) over all pairs (C,D)(C, D), where CC is some substring of AA, and DD is some substring of BB.

Input

The first line contains two positive integers nn and mm (1n,m50001 \leq n, m \leq 5000) — lengths of the two strings AA and BB.

The second line contains a string consisting of nn lowercase Latin letters — string AA.

The third line contains a string consisting of mm lowercase Latin letters — string BB.

Output

Output maximal S(C,D)S(C, D) over all pairs (C,D)(C, D), where CC is some substring of AA, and DD is some substring of BB.

Samples

Sample Input 1

4 5
abba
babab

Sample Output 1

5

Sample Input 2

8 10
bbbbabab
bbbabaaaaa

Sample Output 2

12

Sample Input 3

7 7
uiibwws
qhtkxcn

Sample Output 3

0

Note

For the first case:

abb from the first string and abab from the second string have LCS equal to abb.

The result is S(abb,abab)=(4abbS(abb, abab) = (4 \cdot |abb|) - abb|abb| - abab|abab| = 4334=54 \cdot 3 - 3 - 4 = 5.