#x1041. CF427D Match&Catch

CF427D Match&Catch

Match & Catch

题面翻译

给定两个字符串,求最短的满足各只出现一次的连续公共字串

题目描述

Police headquarter is monitoring signal on different frequency levels. They have got two suspiciously encoded strings s1 s_{1} and s2 s_{2} from two different frequencies as signals. They are suspecting that these two strings are from two different criminals and they are planning to do some evil task.

Now they are trying to find a common substring of minimum length between these two strings. The substring must occur only once in the first string, and also it must occur only once in the second string.

Given two strings s1 s_{1} and s2 s_{2} consist of lowercase Latin letters, find the smallest (by length) common substring p p of both s1 s_{1} and s2 s_{2} , where p p is a unique substring in s1 s_{1} and also in s2 s_{2} . See notes for formal definition of substring and uniqueness.

输入格式

The first line of input contains s1 s_{1} and the second line contains s2 s_{2} (1<=s1,s2<=5000) (1<=|s_{1}|,|s_{2}|<=5000) . Both strings consist of lowercase Latin letters.

输出格式

Print the length of the smallest common unique substring of s1 s_{1} and s2 s_{2} . If there are no common unique substrings of s1 s_{1} and s2 s_{2} print -1.

样例 #1

样例输入 #1

apple
pepperoni

样例输出 #1

2

样例 #2

样例输入 #2

lover
driver

样例输出 #2

1

样例 #3

样例输入 #3

bidhan
roy

样例输出 #3

-1

样例 #4

样例输入 #4

testsetses
teeptes

样例输出 #4

3

提示

Imagine we have string a=a1a2a3...aa a=a_{1}a_{2}a_{3}...a_{|a|} , where a |a| is the length of string a a , and ai a_{i} is the ith i^{th} letter of the string.

We will call string alal+1al+2...ar a_{l}a_{l+1}a_{l+2}...a_{r} (1<=l<=r<=a) (1<=l<=r<=|a|) the substring [l,r] [l,r] of the string a a .

The substring [l,r] [l,r] is unique in a a if and only if there is no pair l1,r1 l_{1},r_{1} such that l1l l_{1}≠l and the substring [l1,r1] [l_{1},r_{1}] is equal to the substring [l,r] [l,r] in a a .