CF1666D.Deletive Editing

传统题 时间 2000 ms 内存 256 MiB 4 尝试 1 已通过 1 标签

Deletive Editing

Daisy loves playing games with words. Recently, she has been playing the following Deletive Editing word game with Daniel.

Daisy picks a word, for example, "DETERMINED". On each game turn, Daniel calls out a letter, for example, 'E', and Daisy removes the first occurrence of this letter from the word, getting "DTERMINED". On the next turn, Daniel calls out a letter again, for example, 'D', and Daisy removes its first occurrence, getting "TERMINED". They continue with 'I', getting "TERMNED", with 'N', getting "TERMED", and with 'D', getting "TERME". Now, if Daniel calls out the letter 'E', Daisy gets "TRME", but there is no way she can get the word "TERM" if they start playing with the word "DETERMINED".

Daisy is curious if she can get the final word of her choice, starting from the given initial word, by playing this game for zero or more turns. Your task it help her to figure this out.

Input

The first line of the input contains an integer nn — the number of test cases (1n100001 \le n \le 10\,000). The following nn lines contain test cases.

Each test case consists of two words ss and tt separated by a space. Each word consists of at least one and at most 30 uppercase English letters; ss is the Daisy's initial word for the game; tt is the final word that Daisy would like to get at the end of the game.

Output

Output nn lines to the output — a single line for each test case. Output "YES" if it is possible for Daisy to get from the initial word ss to the final word tt by playing the Deletive Editing game. Output "NO" otherwise.

Samples

6
DETERMINED TRME
DETERMINED TERM
PSEUDOPSEUDOHYPOPARATHYROIDISM PEPA
DEINSTITUTIONALIZATION DONATION
CONTEST CODE
SOLUTION SOLUTION
YES
NO
NO
YES
NO
YES

在线编程 IDE

建议全屏模式获得最佳体验