CF1666D.Deletive Editing

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

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.

输入格式

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 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.

输入输出样例

  • 输入#1

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

    输出#1

    YES
    NO
    NO
    YES
    NO
    YES
首页