VOKI
시간 제한: 2000ms메모리 제한: 128MB출처: CHC 2003 National Competition #2 - JuniorsBOJ 2112
문제
Substring of some string A is defined as one or more (not necessary succeeding) elements of the string with maintaining the sequence.
There are given two strings, string VOKI and string TOKI.
Write the program that will calculate the length of any shortest substring of string VOKI such as it is not substring of string TOKI.
입력
In first line of input file there is string VOKI and in second one is string TOKI.
The only characters that will occur are lowercase characters of English alphabet (‘a’- ‘z’). String lengths will be less or equal to 1000.
Note: input data will be such so there will always be a solution.
출력
In the first line of file you should print the length of wanted substring.
예제
예제 1
입력
ababaa abbaa
출력
3
예제 2
입력
babab babba
출력
3
예제 3
입력
banana anbnaanbaan
출력
5
코드를 제출하려면 로그인하세요.