CF1477B.Nezzar and Binary String

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Nezzar has a binary string ss of length nn that he wants to share with his best friend, Nanako. Nanako will spend qq days inspecting the binary string. At the same time, Nezzar wants to change the string ss into string ff during these qq days, because it looks better.

It is known that Nanako loves consistency so much. On the ii -th day, Nanako will inspect a segment of string ss from position lil_i to position rir_i inclusive. If the segment contains both characters '0' and '1', Nanako becomes unhappy and throws away the string.

After this inspection, at the ii -th night, Nezzar can secretly change strictly less than half of the characters in the segment from lil_i to rir_i inclusive, otherwise the change will be too obvious.

Now Nezzar wonders, if it is possible to avoid Nanako being unhappy and at the same time have the string become equal to the string ff at the end of these qq days and nights.

输入格式

The first line contains a single integer tt ( 1t21051 \le t \le 2 \cdot 10^5 ) — the number of test cases.

The first line of each test case contains two integers n,qn,q ( 1n21051 \le n \le 2 \cdot 10^5 , 0q21050 \le q \le 2 \cdot 10^5 ).

The second line of each test case contains a binary string ss of length nn .

The third line of each test case contains a binary string ff of length nn .

Then qq lines follow, ii -th of them contains two integers li,ril_i,r_i ( 1lirin1 \le l_i \le r_i \le n ) — bounds of the segment, that Nanako will inspect on the ii -th day.

It is guaranteed that the sum of nn for all test cases doesn't exceed 21052 \cdot 10^5 , and the sum of qq for all test cases doesn't exceed 21052 \cdot 10^5 .

输出格式

For each test case, print "YES" on the single line if it is possible to avoid Nanako being unhappy and have the string ff at the end of qq days and nights. Otherwise, print "NO".

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

输入输出样例

  • 输入#1

    4
    5 2
    00000
    00111
    1 5
    1 3
    2 1
    00
    01
    1 2
    10 6
    1111111111
    0110001110
    1 10
    5 9
    7 10
    1 7
    3 5
    6 10
    5 2
    10000
    11000
    2 5
    1 3

    输出#1

    YES
    NO
    YES
    NO

说明/提示

In the first test case, 000000001100111\underline{00000} \rightarrow \underline{000}11 \rightarrow 00111 is one of the possible sequences of string changes.

In the second test case, it can be shown that it is impossible to have the string ff at the end.

首页