CF1426B.Symmetric Matrix

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Masha has nn types of tiles of size 2×22 \times 2 . Each cell of the tile contains one integer. Masha has an infinite number of tiles of each type.

Masha decides to construct the square of size m×mm \times m consisting of the given tiles. This square also has to be a symmetric with respect to the main diagonal matrix, and each cell of this square has to be covered with exactly one tile cell, and also sides of tiles should be parallel to the sides of the square. All placed tiles cannot intersect with each other. Also, each tile should lie inside the square. See the picture in Notes section for better understanding.

Symmetric with respect to the main diagonal matrix is such a square ss that for each pair (i,j)(i, j) the condition s[i][j]=s[j][i]s[i][j] = s[j][i] holds. I.e. it is true that the element written in the ii -row and jj -th column equals to the element written in the jj -th row and ii -th column.

Your task is to determine if Masha can construct a square of size m×mm \times m which is a symmetric matrix and consists of tiles she has. Masha can use any number of tiles of each type she has to construct the square. Note that she can not rotate tiles, she can only place them in the orientation they have in the input.

You have to answer tt independent test cases.

输入格式

The first line of the input contains one integer tt ( 1t1001 \le t \le 100 ) — the number of test cases. Then tt test cases follow.

The first line of the test case contains two integers nn and mm ( 1n1001 \le n \le 100 , 1m1001 \le m \le 100 ) — the number of types of tiles and the size of the square Masha wants to construct.

The next 2n2n lines of the test case contain descriptions of tiles types. Types of tiles are written one after another, each type is written on two lines.

The first line of the description contains two positive (greater than zero) integers not exceeding 100100 — the number written in the top left corner of the tile and the number written in the top right corner of the tile of the current type. The second line of the description contains two positive (greater than zero) integers not exceeding 100100 — the number written in the bottom left corner of the tile and the number written in the bottom right corner of the tile of the current type.

It is forbidden to rotate tiles, it is only allowed to place them in the orientation they have in the input.

输出格式

For each test case print the answer: "YES" (without quotes) if Masha can construct the square of size m×mm \times m which is a symmetric matrix. Otherwise, print "NO" (withtout quotes).

输入输出样例

  • 输入#1

    6
    3 4
    1 2
    5 6
    5 7
    7 4
    8 9
    9 8
    2 5
    1 1
    1 1
    2 2
    2 2
    1 100
    10 10
    10 10
    1 2
    4 5
    8 4
    2 2
    1 1
    1 1
    1 2
    3 4
    1 2
    1 1
    1 1

    输出#1

    YES
    NO
    YES
    NO
    YES
    YES

说明/提示

The first test case of the input has three types of tiles, they are shown on the picture below.

Masha can construct, for example, the following square of size 4×44 \times 4 which is a symmetric matrix:

首页