CF1553D.Backspace

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

You are given two strings ss and tt , both consisting of lowercase English letters. You are going to type the string ss character by character, from the first character to the last one.

When typing a character, instead of pressing the button corresponding to it, you can press the "Backspace" button. It deletes the last character you have typed among those that aren't deleted yet (or does nothing if there are no characters in the current string). For example, if ss is "abcbd" and you press Backspace instead of typing the first and the fourth characters, you will get the string "bd" (the first press of Backspace deletes no character, and the second press deletes the character 'c'). Another example, if ss is "abcaa" and you press Backspace instead of the last two letters, then the resulting text is "a".

Your task is to determine whether you can obtain the string tt , if you type the string ss and press "Backspace" instead of typing several (maybe zero) characters of ss .

输入格式

The first line contains a single integer qq ( 1q1051 \le q \le 10^5 ) — the number of test cases.

The first line of each test case contains the string ss ( 1s1051 \le |s| \le 10^5 ). Each character of ss is a lowercase English letter.

The second line of each test case contains the string tt ( 1t1051 \le |t| \le 10^5 ). Each character of tt is a lowercase English letter.

It is guaranteed that the total number of characters in the strings over all test cases does not exceed 21052 \cdot 10^5 .

输出格式

For each test case, print "YES" if you can obtain the string tt by typing the string ss and replacing some characters with presses of "Backspace" button, or "NO" if you cannot.

You may print each letter in any case (YES, yes, Yes will all be recognized as positive answer, NO, no and nO will all be recognized as negative answer).

输入输出样例

  • 输入#1

    4
    ababa
    ba
    ababa
    bb
    aaa
    aaaa
    aababa
    ababa

    输出#1

    YES
    NO
    NO
    YES

说明/提示

Consider the example test from the statement.

In order to obtain "ba" from "ababa", you may press Backspace instead of typing the first and the fourth characters.

There's no way to obtain "bb" while typing "ababa".

There's no way to obtain "aaaa" while typing "aaa".

In order to obtain "ababa" while typing "aababa", you have to press Backspace instead of typing the first character, then type all the remaining characters.

首页