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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
#include <iostream>
#include <math.h>
#include <vector>
#include <set>


typedef int INT;


/**************************
 *
 **************************/


struct Auto
{
    Auto()
        : x1(0)
        , x2(0)
        , width(0)
    {}

    INT x1;
    INT x2;
    INT width;
};


struct Data
{
    Data()
        : pos(0)
        , auto_index(0)
    {}

    Data(INT pos, int index)
        : pos(pos)
        , auto_index(index)
    {}

    INT pos;
    int auto_index;
};


struct datacmp
{
    bool operator()(const Data &a, const Data &b) const
    {
        if (a.pos < b.pos)
            return true;

        return false;
    }
};


//
typedef std::multiset<Data, datacmp> Set;
typedef Set::iterator SetIter;
typedef Set::const_iterator SetConstIter;


/**************************
 * Prototypy funkcji
 **************************/


void check_one();
void read_autos(int n, std::vector<Auto> &autos);


/**************************
 * Main
 **************************/


int main()
{
    std::ios_base::sync_with_stdio(0);

    //
    int t = 0;
    std::cin >> t;

    for (int i = 0; i < t; ++i)
    {
        check_one();
    }

    //
    return 0;
}


/****************************
 * Funkcje
 ****************************/


void check_one()
{
    //
    int n = 0;
    INT w = 0;

    std::cin >> n;
    std::cin >> w;

    //
    std::vector<Auto> autos_before(n);
    std::vector<Auto> autos_after(n);

    read_autos(n, autos_before);
    read_autos(n, autos_after);

    //
    Set poczatki_przed;
    Set konce_przed;

    Set poczatki_po;
    Set konce_po;

    for (int i = 0; i < n; ++i)
    {
        poczatki_przed.insert(Data(autos_before[i].x1, i));
        //konce_przed.insert(Data(autos_before[i].x2, i));

        poczatki_po.insert(Data(autos_after[i].x1, i));
        //konce_po.insert(Data(autos_after[i].x2, i));
    }

    //
    {
        SetConstIter iter = poczatki_po.begin(), end = poczatki_po.end();

        for ( ; iter != end; ++iter)
        {
            // DEBUG
            //printf("iter: %d %d\n", iter->pos, iter->auto_index + 1);

            if (autos_before[iter->auto_index].x1 >= autos_after[iter->auto_index].x1)
            {
                //
                //
                //
                {
                    SetConstIter i = poczatki_przed.begin(), e = poczatki_przed.find(Data(autos_before[iter->auto_index].x1, iter->auto_index));

                    for ( ; i != e; ++i)
                    {
                        // DEBUG
                        //printf("i, %d %d\n", i->pos, i->auto_index + 1);

                        if (autos_after[i->auto_index].x2 <= iter->pos)
                            continue;

                        if (w - autos_after[i->auto_index].width - autos_after[iter->auto_index].width < 0)
                        {
                            std::cout << "NIE" << std::endl;
                            return;
                        }
                    }
                }
            }
        }
    }

    std::cout << "TAK" << std::endl;
}


void read_autos(int n, std::vector<Auto> &autos)
{
    for (int i = 0; i < n; ++i)
    {
        INT x1 = 0, x2 = 0, y1 = 0, y2 = 0;

        std::cin >> x1;
        std::cin >> y1;
        std::cin >> x2;
        std::cin >> y2;

        autos[i].x1 = std::min(x1, x2);
        autos[i].x2 = std::max(x1, x2);

        autos[i].width = abs(y2 - y1);
    }
}