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
#include <iostream>
#include <vector>
#include <cstdlib>
#include <algorithm>

using namespace std;

int t,n,w;

int wej[50005][4];
int wyj[50005][4];

int kolejnosc[50005];
int max_tree[200005];
int tree_size;

vector< pair<int,int> > lista_wej;
vector< pair<int,int> > lista_wyj;

void Set(int p, int v)
{
    p += tree_size;
    max_tree[p] = v;
    //cout <<"Wartosc wierzcholka "<<p<<" to "<<max_tree[p]<<"\n";
    p /= 2;
    while(p > 0)
    {
        max_tree[p] = max(max_tree[2*p], max_tree[2*p+1]);
        //cout <<"Wartosc wierzcholka "<<p<<" to "<<max_tree[p]<<"\n";
        p /= 2;
    }
}

int Find(int p, int k)
{
    int m = -1;
    p += tree_size;
    k += tree_size;
    while(p < k)
    {
        if(p%2==1)
        {
            m = max(m, max_tree[p++]);
        }
        if(k%2==0)
        {
            m = max(m, max_tree[k--]);
        }
        p /= 2;
        k /= 2;
    }
    if(p == k)
    {
        m = max(m, max_tree[p]);
    }
    return m;
}

int main()
{
    ios_base::sync_with_stdio(0);
    cin >> t;
    for(int i = 0; i < t; i++)
    {
        cin >> n >> w;
        for(int j = 0; j < n; j++)
        {
            cin >> wej[j][0] >> wej[j][1] >> wej[j][2] >> wej[j][3];
        }
        for(int j = 0; j < n; j++)
        {
            cin >> wyj[j][0] >> wyj[j][1] >> wyj[j][2] >> wyj[j][3];
        }
        lista_wej.resize(n);
        lista_wyj.resize(n);
        pair<int,int> samochod;
        for(int j = 0; j < n; j++)
        {
            samochod.first = min(wej[j][0], wej[j][2]);
            samochod.second = j;
            lista_wej[j] = samochod;
        }
        sort(lista_wej.begin(), lista_wej.end());
        /*cout <<"Lista wejsciowa\n";
        for(int j = 0; j < n; j++)
        {
            cout <<lista_wej[j].first<<" "<<lista_wej[j].second<<"\n";
        }*/
        for(int j = 0; j < n; j++)
        {
            kolejnosc[lista_wej[j].second] = j;
        }
        /*cout <<"Kolejnosc: ";
        for(int j = 0; j < n; j++)
        {
            cout <<kolejnosc[j]<<" ";
        }*/
        for(int j = 0; j < n; j++)
        {
            samochod.first = min(wyj[j][0],wyj[j][2]);
            samochod.second = j;
            lista_wyj[j] = samochod;
        }
        sort(lista_wyj.begin(), lista_wyj.end());
        tree_size = 1;
        while(tree_size < n)
        {
            tree_size *= 2;
        }
        for(int j = 0; j <= 2*tree_size; j++)
        {
            max_tree[j] = 0;
        }
        int index, wysokosc;
        for(int j = 0; j < n; j++)
        {
            index = lista_wej[j].second;
            //cout <<"Dodaje do drzewa samochod "<<index<<"\n";
            wysokosc = abs(wej[index][1]-wej[index][3]);
            Set(j,wysokosc);
            /*for(int j = 0; j <= 2*tree_size; j++)
            {
                cout <<max_tree[j]<<" ";
            }
            cout <<"\n";*/
        }
        bool warunek = true;
        int zajete;
        for(int j = 0; j < n; j++)
        {
            index = kolejnosc[lista_wyj[j].second];
            Set(index, 0);
            zajete = Find(0, index);
            //cout <<"Samochod "<<lista_wyj[j].second<<" zajete "<<zajete<<"\n";
            //cout << w-zajete<<" < "<<abs(wej[lista_wyj[j].second][1]-wej[lista_wyj[j].second][3])<<"\n";
            if(w-zajete < abs(wej[lista_wyj[j].second][1]-wej[lista_wyj[j].second][3]))
            {
                //cout <<"Samochod "<<lista_wyj[j].second<<" zajete "<<zajete<<"\n";
                //cout << w-zajete<<" < "<<abs(wej[lista_wyj[j].second][1]-wej[lista_wyj[j].second][3])<<"\n";
                warunek = false;
                break;
            }
        }
        if(warunek == true)
        {
            cout <<"TAK\n";
        }
        else
        {
            cout <<"NIE\n";
        }
        lista_wej.clear();
        lista_wyj.clear();
    }
    return 0;
}