#Lutece0803. Keystroke

Keystroke

Migrated from Lutece 803 Keystroke

All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.

Description

Vim is a powerful editer. And this problem is related to its auto-completion function. The rule mentioned above will be different from the real function. So be really careful.

The keys that this problem will use consist of three types.

  • letter key i.e. a-z

By striking these key, a letter will be added after the current string you input.

  • backspace

By striking backspace, the last letter in your string will be deleted.

  • completion key i.e. Ctrl+n, Ctrl+p

By striking completion key, you will enter completion mode, and striking any non-completion key ends the mode. Once you enter the completion mode, the words you have typed and whose prefix is the string you input will be listed in lexicographical order. See the picture.

title

strike b

title

strike Ctrl+n

title

strike Ctrl+n

title

strike Ctrl+n

title

strike Ctrl+p

title

strike c

If you enter the completion mod by striking Ctrl+n, you will be choosing the lexicographical smallest word (top one). And if you enter the completion mod by striking Ctrl+p, you will be choosing the lexicographical largest word (bottom one).

Once you are in the completion mode, you can choose the next word (if existed) by striking Ctrl+n, and previous word (if existed) by striking Ctrl+p.

Now, given the words you have typed, and the string you want to type now, please answer the minimum times you have to strike the key.

Input

The first line of the input contains one integer NN (1N20001\leq N\leq 2000), indicating the number of the words you have typed. Each line of the next NN lines contains a word. And the total length of the words would not be larger than 20002000. The last line of the input contains the word you want to type now. The length of that words would not be larger than 20002000.

Output

Output the minimum times you have to strike the key.

Samples

3
aaaab
aaaac
aaaad
aaaa
2

Note

Striking Ctrl+n or Ctrl+p is only one keystroke.

By striking Ctrl+n or Ctrl+p followed by backspace, you can get aaaa in 22 steps.

Resources

the 12th UESTC Programming Contest Preliminary