Problem5620--ABC177——B - Substring

5620: ABC177——B - Substring

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 256 MiB

Description

Given are two strings $S$ and $T$. Let us change some of the characters in $S$ so that $T$ will be a substring of $S$.
At least how many characters do we need to change?
Here, a substring is a consecutive subsequence. For example, ${xxx}$ is a substring of ${yxxxy}$, but not a substring of ${xxyxx}$.

Input

First line contains a string $S$.
Second line contains a string $T$.

Output

Print the minimum number of characters in $S$ that need to be changed.

Constraints

The lengths of $S$ and $T$ are each at least $1$ and at most $1000$.
The length of $T$ is at most that of $S$.
$S$ and $T$ consist of lowercase English letters.

Sample 1 Input

cabacc
abc

Sample 1 Output

1
For example, changing the fourth character ${a}$ in $S$ to ${c}$ will match the second through fourth characters in $S$ to $T$. Since $S$ itself does not have $T$ as its substring, this number of changes - one - is the minimum needed.

Sample 2 Input

codeforces
atcoder

Sample 2 Output

6

HINT

题目来源:AtCoder ABC 177 B 题

REF Vedio

Source/Category

AtCoder_ABC 100.177.ABC177