Reverse String

You have a string s and a chip, which you can place onto any character of this string.

After placing the chip, you move it to the right several (maybe zero) times, i. e. you perform the following operation several times: if the current position of the chip is i, you move it to the position i+1. Of course, moving the chip to the right is impossible if it is already in the last position.

After moving the chip to the right, you move it to the left several (maybe zero) times, i. e. you perform the following operation several times: if the current position of the chip is i, you move it to the position i−1. Of course, moving the chip to the left is impossible if it is already in the first position.

When you place a chip or move it, you write down the character where the chip ends up after your action. For example, if s is abcdef, you place the chip onto the 3-rd character, move it to the right 2 times and then move it to the left 3 times, you write down the string cdedcb.

You are given two strings s and t. Your task is to determine whether it's possible to perform the described operations with s so that you write down the string t as a result.

Input

The first line contains one integer q (1≤q≤500) — the number of test cases.

Each test case consists of two lines. The first line contains the string s (1≤|s|≤500), the second line contains the string t (1≤|t|≤2⋅|s|−1). Both strings consist of lowercase English characters.

It is guaranteed that the sum of |s| over all test cases does not exceed 500.

Output

For each test case, print "YES" if you can obtain the string t by performing the process mentioned in the statement with the string s, 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).

Example

input

Copy

6
abcdef
cdedcb
aaa
aaaaa
aab
baaa
ab
b
abcdef
abcdef
ba
baa

output

Copy

YES
YES
NO
YES
YES
NO

Note

Consider the examples.

The first test case is described in the statement.

In the second test case, you can place the chip on the 1-st position, move it twice to the right, and then move it twice to the left.

In the fourth test case, you can place the chip on the 2-nd position, and then don't move it at all.

In the fifth test case, you can place the chip on the 1-st position, move it 5 times to the right, and then finish the process.

思路:如果想要由s来推t,就是将s暴力,把它的每一种情况与t对比是不可能的,因为那必超时。

我们可以将t分为向右移,和向左移,让s的片段与之做对比(s的片段的取法为两重for循环)记得结束条件:当t的下标大于等于其长度时,还有两字符不相等时。

#include <iostream>
#include <algorithm>
#include <cstring>
#include <string>

using namespace std;

int main()
{
    int tt;
    cin>>tt;
    while(tt--)
    {
        string t,s;
        cin>>s>>t;
        int n=s.size();
        int m=t.size();
        bool st=false;
        for(int i=0;i<n;i++)
        {
            for(int j=i;j<n;j++)
            {
                int pre=0;
                bool ok=true;
                for(int k=i;k<=j;k++)
                {
                    if(s[k]!=t[pre]||pre==m)
                    {
                        ok=false;
                        break;
                    }
                    pre++;
                }
                for(int k=j-1;k>=0;k--)
                {
                    if(pre==m)
                    {
                        break;
                    }
                    if(s[k]!=t[pre])
                    {
                        ok=false;
                        break;
                    }
                    pre++;
                }
                if(pre==m&&ok)
                {
                    st=true;
                    break;
                }
            }
            if(st)
            {
                break;
            }
        }
        cout<<(st? "YES":"NO")<<endl;
    }
    return 0;
}

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值