1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
#include <cstdlib>
#include <stdio.h>
#include <iostream>
#include <string.h>
#include <algorithm>
#include <math.h>
#include <functional>
#include <set>
#include <vector>
#include <map>

using namespace std;

int WysokoscGlobalna;

struct Car
{
    int x1,y1,x2,y2;
    int wys;
    int org_id;

    int idDoPor;
    int group;
};

bool operator<(const Car &a, const Car &b)
{
    if (a.x1==b.x1)
    {
        if (a.y1==b.y1)
        {
            if (a.y2==b.y2)
            {
               return a.x2 < b.x2;
            }
            else
            return a.y2 <b.y2;
        }
        else
        {
            return a.y1 < b.y1;
        }
    }
    else
    {
        return a.x1 < b.x1;
    }
}

std::set<Car> auta_wejscie;
std::set<Car>::iterator auta_wejscie_it;
std::set<Car> auta_wyjscie;
std::set<Car>::iterator auta_wyjscie_it;
std::map< int,int > IdtoPos;

bool sprawdz_brute(Car car2)
{

    std::set<Car>::iterator iter = auta_wyjscie.find(car2);

    int ID = car2.idDoPor;
    int wys = car2.wys;

    if (iter == auta_wyjscie.begin() )
    {
        return true;
    }

    bool all=false;

    while(!all)
    {
        iter--;

        Car car = *iter;

        if (car.idDoPor>ID)
        {
            if (car.wys + wys > WysokoscGlobalna)
                return false;
        }

        if (iter == auta_wyjscie.begin() )
        {
           all = true;
        }
    }

    return true;
}


int main()
{
	int t;

	cin >> t; //ilosc testow

	for(int ti=0; ti<t;ti++)
    {
        auta_wejscie.clear();
        auta_wyjscie.clear();
        IdtoPos.clear();

        int n;
        int x1,y1,x2,y2;

        cin >> n;  // <50.000
        cin >> WysokoscGlobalna;  // <10^9

        //1. wczytaj poczatkowe ustawienie
        for (int i=1;i<=n ;i++)
        {
            scanf("%d%d%d%d", &x1, &y1, &x2, &y2);
            Car car;
            car.x1=x1;
            car.x2=x2;
            car.y1=y1;
            car.y2=y2;
            car.org_id = i;
            car.wys = y2-y1;
            auta_wejscie.insert(car);
        }

        int pos=1;
        for (auta_wejscie_it = auta_wejscie.begin(); auta_wejscie_it!=auta_wejscie.end(); auta_wejscie_it++)
        {
            IdtoPos[auta_wejscie_it->org_id] = pos ;
            pos++;
        }

        //wczytaj koncowe ustawienie
        for (int i=1;i<=n ;i++)
        {
            scanf("%d%d%d%d", &x1, &y1, &x2, &y2);
            Car car;
            car.x1=x1;
            car.x2=x2;
            car.y1=y1;
            car.y2=y2;
            car.org_id = i;
            car.wys = y2-y1;
            car.idDoPor = IdtoPos[i];
            //getId based on input

            auta_wyjscie.insert(car);
        }

        bool mozna = true;

        //porownaj wyniki
        for (auta_wejscie_it = auta_wejscie.begin(),auta_wyjscie_it = auta_wyjscie.begin() ; auta_wejscie_it!=auta_wejscie.end() && auta_wyjscie_it!=auta_wyjscie.end() && mozna; auta_wejscie_it++,auta_wyjscie_it++)
        {
            Car car2 = *auta_wyjscie_it;

            mozna = sprawdz_brute(car2);

        }

        //5.wypisz
        if (mozna==true)
        {
            cout << "TAK" << endl;
        }
        else
        {
            cout << "NIE" << endl;
        }
    }

	return 0;
}