A non-empty string $s$ is called binary, if it consists only of characters "0" and "1". A substring $s[l \dots r]$ $(1 \le l \le r \le |s|)$ of string $s = s_{1}s_{2} \dots s_{|s|}$ (where $|s|$ is the length of string $s$) is string $s_{l}s_{l + 1}...s_{r}$.
Professor Zhang has got a long binary string $s$ starting with "0", and he wants to know whether there is a substring of the string $s$ that the occurrences of "0" and "1" in the substring is exact $a$ and $b$, respectively, where $a$ and $b$ are two given numbers.
Since the binary string is very long, we will compress it. The compression method is:
1. Split the string to runs of same characters.
2. Any two adjacent runs consist of different characters. Use the length of each run to represent the string.
For example, the runs of a binary string 00101100011110111101001111111 are {00, 1, 0, 11, 000, 1111, 0, 1111, 0, 1, 00, 1111111}, so it will be compressed into {2, 1, 1, 2, 3, 4, 1, 4, 1, 1, 2, 7}.