Codeforces Round #685 (Div. 2)------Non-Substring Subsequence

题目

Hr0d1y has q queries on a binary string s of length n. A binary string is a string containing only characters ‘0’ and ‘1’.
A query is described by a pair of integers li, ri (1≤li<ri≤n).
For each query, he has to determine whether there exists a good subsequence in s that is equal to the substring s[li…ri].
A substring s[i…j] of a string s is the string formed by characters sisi+1…sj.
String a is said to be a subsequence of string b if a can be obtained from b by deleting some characters without changing the order of the remaining characters.
A subsequence is said to be good if it is not contiguous and has length ≥2. For example, if s is “1100110”, then the subsequences s1s2s4 (“1100110”) and s1s5s7 (“1100110”) are good, while s1s2s3 (“1100110”) is not good.
Can you help Hr0d1y answer each query?

Input
The first line of the input contains a single integer t (1≤t≤100) — the number of test cases. The description of each test case is as follows.
The first line contains two integers n (2≤n≤100) and q (1≤q≤100) — the length of the string and the number of queries.
The second line contains the string s.
The i-th of the next q lines contains two integers li and ri (1≤li<ri≤n).

Output
For each test case, output q lines. The i-th line of the output of each test case should contain “YES” if there exists a good subsequence equal to the substring s[li…ri], and “NO” otherwise.

You may print each letter in any case (upper or lower).

题解

找出左侧区间有没有和他的左相同的字符或者右侧区间有没有和他的右相同的字符即可

AC代码

#include<iostream>
#include<algorithm>
#include<queue>
#include<vector>
#include<stack>
#include<string>
#include<cstdio>
#include<cstring>
#include<map>
#include<set>
using namespace std;
#define ll long long
const int N = 1e5 + 15;
void closeStd(){
    std::ios::sync_with_stdio(false);
    std::cin.tie(0);
    std::cout.tie(0);
}

int main()
{
    closeStd();
    int t; cin >> t;
    while(t--){
        int n, q; cin >> n >> q;
        string str; cin >> str;
        while(q--){
            int l, r; cin >> l >> r;
            l--, r--;
            int flag = 0;
            for(int i = 0; i < l; i++){
                if(str[i] == str[l])
                    flag = 1;
            }
            for(int i = r + 1; i < n; i++){
                if(str[i] == str[r])
                    flag = 1;
            }
            if(flag)
                cout << "YES" << endl;
            else
                cout << "NO" << endl;
        }
    }

    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值