CF1320D Reachable Strings
Description
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 $ s $ starting from the $ l $ -th character and ending with the $ r $ -th character as $ s[l \dots r] $ . The characters of each string are numbered from $ 1 $ .
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 $ a $ is considered reachable from binary string $ b $ if there exists a sequence $ s_1 $ , $ s_2 $ , ..., $ s_k $ such that $ s_1 = a $ , $ s_k = b $ , and for every $ i \in [1, k - 1] $ , $ s_i $ can be transformed into $ s_{i + 1} $ using exactly one operation. Note that $ k $ can be equal to $ 1 $ , i. e., every string is reachable from itself.
You are given a string $ t $ and $ q $ queries to it. Each query consists of three integers $ l_1 $ , $ l_2 $ and $ len $ . To answer each query, you have to determine whether $ t[l_1 \dots l_1 + len - 1] $ is reachable from $ t[l_2 \dots l_2 + len - 1] $ .
Input Format
N/A
Output Format
N/A