Hide

Problem E
Homework

Anthony has two multiple choice assignments to hand in today. The answer to each assignment is a string, where the ith letter represents the answer to the ith question.

But instead of handing in two strings, Anthony only hands in a single string. He claims he answered every question correctly but his little sister Cora merged his two strings into a single string. Moreover, Cora merged his string in such a way that the following conditions are satisfied:

  1. For any two integers 0i<j<|s1| (where |s1| is the length of s1), the index of s1[i] in s is less than the index of s1[j] in s

  2. For any two integers 0i<j<|s2|, the index of s2[i] in s is less than the index of s2[j] in s

Can you help Anthony’s teacher verify whether Anthony’s claim is possible?

Input

The first line contains a single string s. It is guaranteed that 2|s|10000.

The next two lines contain strings s1 and s2 respectively. It is guaranteed that 1|s1|,|s2|5000 and |s1|+|s2|=|s|.

All the strings consists of only lowercase English letters.

Output

If Anthony’s claim is possible, print “yes” (without quotes). Otherwise, print “no” (without quotes).

Sample Input 1 Sample Output 1
aabcad
aba
acd
yes
Sample Input 2 Sample Output 2
aabcad
acb
aad
no
Hide

Please log in to submit a solution to this problem

Log in