#P13425. [COCI 2020/2021 #1] Bajka

    ID: 15299 远端评测题 1000ms 512MiB 尝试: 0 已通过: 0 难度: 3 上传者: 标签>字符串动态规划 DP2020深度优先搜索 DFS记忆化搜索COCI(克罗地亚)

[COCI 2020/2021 #1] Bajka

题目描述

Little Fabijan got bored with picture books, so he decided to read his first fairytale. Unfortunately, Fabijan often encounters a word that scares him. To overcome his fear, he will play a game he invented.

The scary word can be represented as an array of nn lowercase letters. To start the game, Fabijan puts his finger on some position of the array and writes the letter from that position on a piece of paper. He then performs one of the following moves an arbitrary number of times:

  • He moves the finger to a position that is one place to the left or to the right of the current position, if that position exists. Also, Fabijan will then write the letter from the new position on the paper, after the last written letter.
  • He moves the finger to any position with the same letter as the current one. Fabijan will not write anything on the paper in this case.

It takes him xy|x - y| seconds to move the finger from position xx to position yy.

Fabijan will overcome his fear of the word if, at the end of the game, his favourite word is written on the paper. He wants to finish the fairytale as soon as possible, so he asks you to tell him the minimum number of seconds it will take him to overcome his fear of the given scary word.

输入格式

The first line contains integers nn and mm (1n,m3001 \leq n, m \leq 300).

The second line contains nn lowercase letters, the word that scares Fabijan.

The third line contains mm lowercase letters, Fabijan's favourite word.

输出格式

Print the shortest possible time in seconds Fabijan needs to write his favourite word on the paper, or 1-1 if that is not possible.

2 2
wa
ac
-1
7 7
monolog
nogolom
10
14 5
niskoobrazovan
boook
5

提示

Clarification of the third example:

Fabijan will first put his finger on position 7 and write down the letter 'b'. He will then move the finger two times to the left, and each time write down the letter 'o'. In the next step, he will move the finger to position 6 using the second type of move. Finally, he will again move the finger two times to the left, and write down the letters 'o' and 'k'. It took him five seconds in total, one second per move.

Scoring

In test cases worth 2020 points, letters in the word that scares Fabijan will be pairwise distinct.