CF1627F.Not Splitting

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

There is a k×kk \times k grid, where kk is even. The square in row rr and column cc is denoted by (r,c)(r,c) . Two squares (r1,c1)(r_1, c_1) and (r2,c2)(r_2, c_2) are considered adjacent if r1r2+c1c2=1\lvert r_1 - r_2 \rvert + \lvert c_1 - c_2 \rvert = 1 .

An array of adjacent pairs of squares is called strong if it is possible to cut the grid along grid lines into two connected, congruent pieces so that each pair is part of the same piece. Two pieces are congruent if one can be matched with the other by translation, rotation, and reflection, or a combination of these.

The picture above represents the first test case. Arrows indicate pairs of squares, and the thick black line represents the cut. You are given an array aa of nn pairs of adjacent squares. Find the size of the largest strong subsequence of aa . An array pp is a subsequence of an array qq if pp can be obtained from qq by deletion of several (possibly, zero or all) elements.

输入格式

The input consists of multiple test cases. The first line contains an integer tt ( 1t1001 \leq t \leq 100 ) — the number of test cases. The description of the test cases follows.

The first line of each test case contains two space-separated integers nn and kk ( 1n1051 \leq n \leq 10^5 ; 2k5002 \leq k \leq 500 , kk is even) — the length of aa and the size of the grid, respectively.

Then nn lines follow. The ii -th of these lines contains four space-separated integers ri,1r_{i,1} , ci,1c_{i,1} , ri,2r_{i,2} , and ci,2c_{i,2} ( 1ri,1,ci,1,ri,2,ci,2k1 \leq r_{i,1}, c_{i,1}, r_{i,2}, c_{i,2} \leq k ) — the ii -th element of aa , represented by the row and column of the first square (ri,1,ci,1)(r_{i,1}, c_{i,1}) and the row and column of the second square (ri,2,ci,2)(r_{i,2}, c_{i,2}) . These squares are adjacent.

It is guaranteed that the sum of nn over all test cases does not exceed 10510^5 , and the sum of kk over all test cases does not exceed 500500 .

输出格式

For each test case, output a single integer — the size of the largest strong subsequence of aa .

输入输出样例

  • 输入#1

    3
    8 4
    1 2 1 3
    2 2 2 3
    3 2 3 3
    4 2 4 3
    1 4 2 4
    2 1 3 1
    2 2 3 2
    4 1 4 2
    7 2
    1 1 1 2
    2 1 2 2
    1 1 1 2
    1 1 2 1
    1 2 2 2
    1 1 2 1
    1 2 2 2
    1 6
    3 3 3 4

    输出#1

    7
    4
    1

说明/提示

In the first test case, the array aa is not good, but if we take the subsequence [a1,a2,a3,a4,a5,a6,a8][a_1, a_2, a_3, a_4, a_5, a_6, a_8] , then the square can be split as shown in the statement.

In the second test case, we can take the subsequence consisting of the last four elements of aa and cut the square with a horizontal line through its center.

首页