CF1320D.Reachable Strings

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

In this problem, we will deal with binary strings. Each character of a binary string is either a 0 or a 1. We will also deal with substrings; recall that a substring is a contiguous subsequence of a string. We denote the substring of string ss starting from the ll -th character and ending with the rr -th character as s[lr]s[l \dots r] . The characters of each string are numbered from 11 .

We can perform several operations on the strings we consider. Each operation is to choose a substring of our string and replace it with another string. There are two possible types of operations: replace 011 with 110, or replace 110 with 011. For example, if we apply exactly one operation to the string 110011110, it can be transformed into 011011110, 110110110, or 110011011.

Binary string aa is considered reachable from binary string bb if there exists a sequence s1s_1 , s2s_2 , ..., sks_k such that s1=as_1 = a , sk=bs_k = b , and for every i[1,k1]i \in [1, k - 1] , sis_i can be transformed into si+1s_{i + 1} using exactly one operation. Note that kk can be equal to 11 , i. e., every string is reachable from itself.

You are given a string tt and qq queries to it. Each query consists of three integers l1l_1 , l2l_2 and lenlen . To answer each query, you have to determine whether t[l1l1+len1]t[l_1 \dots l_1 + len - 1] is reachable from t[l2l2+len1]t[l_2 \dots l_2 + len - 1] .

输入格式

The first line contains one integer nn ( 1n21051 \le n \le 2 \cdot 10^5 ) — the length of string tt .

The second line contains one string tt ( t=n|t| = n ). Each character of tt is either 0 or 1.

The third line contains one integer qq ( 1q21051 \le q \le 2 \cdot 10^5 ) — the number of queries.

Then qq lines follow, each line represents a query. The ii -th line contains three integers l1l_1 , l2l_2 and lenlen ( 1l1,l2t1 \le l_1, l_2 \le |t| , 1lentmax(l1,l2)+11 \le len \le |t| - \max(l_1, l_2) + 1 ) for the ii -th query.

输出格式

For each query, print either YES if t[l1l1+len1]t[l_1 \dots l_1 + len - 1] is reachable from t[l2l2+len1]t[l_2 \dots l_2 + len - 1] , or NO otherwise. You may print each letter in any register.

输入输出样例

  • 输入#1

    5
    11011
    3
    1 3 3
    1 4 2
    1 2 3

    输出#1

    Yes
    Yes
    No
首页