1779.
Two strings
时间限制 1000 ms
内存限制 64 MB
Giving two strings and you should judge if they are matched.
The first string contains lowercase letters and uppercase letters.
The second string contains lowercase letters, uppercase letters, and special symbols: "." and "*".
. can match any letter, and * means the front character can appear any times. For example, "a.b" can match "acb" or "abb", "a*" can match "a", "aa" and even empty string. ( "*" will not appear in the front of the string, and there will not be two consecutive "*".
输入数据
输出数据
For each test case, print "yes" if the two strings are matched, otherwise print "no".
样例输入
复制
3
aa
a*
abb
a.*
abb
aab
\n
\n
\n
\n
\n
\n
\n