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
#include<iostream>
#include<algorithm>
using namespace std;

long long int tab[50004][2][2];
long long int tab2[50004][2][2];
long long int id[50004];
long long int id2[50004];
long long int miejsce[50004];
long long int miejsce2[50004];

bool cmp(int a, int b)
{
    int x, y;
    x=min(tab[a][0][0], tab[a][1][0]);
    y=min(tab[b][0][0], tab[b][1][0]);
    if(x<=y)
    return true;
    return false;


}
bool cmp2(int a, int b)
{
    int x, y;
    x=min(tab2[a][0][0], tab2[a][1][0]);
    y=min(tab2[b][0][0], tab2[b][1][0]);
    if(x<=y)
    return true;
    return false;


}

long long int M=65536;

long long int w[999999];

void insert(int x, int val) { /* val==1 to wstawianie, val==-1 to usuwanie */
   int v = M + x;
   w[v] = val;
   while (v != 1) {
     v /= 2;
     w[v] =max( w[2 * v] , w[2 * v + 1]);
   }
}

int query(int a, int b) {
   int va = M + a, vb = M + b;
   /* Skrajne przedziały do rozkładu. */
   long long int wyn = w[va];
   if (va != vb) wyn =max(wyn, w[vb]);
   /* Spacer aż do momentu spotkania. */
   while (va / 2 != vb / 2) {
     if (va % 2 == 0) wyn =max(wyn, w[va + 1]); /* prawa bombka na lewej ścieżce */
     if (vb % 2 == 1) wyn =max(wyn, w[vb - 1]); /* lewa bombka na prawej ścieżce */
     va /= 2; vb /= 2;
   }
   return wyn;
}

int main()
{
    ios_base::sync_with_stdio(0);
   long long  int ile_testow=0, wys=0, wysokosc;
    long long int wys1=0, wys2=0, iden, miejsce_stare, miejsce_nowe, luzik;
    long long int drugiID, drugiMIEJSCE;
     long long int n=0, h=0;
    bool odp=true;
    cin>>ile_testow;
    for(int k=0;k<ile_testow;k++)
            {

            cin>>n>>h;
            odp=true;
            M=2;
            while(M<=n)
            {
                M*=2;
            }
          //  cout<<M<<endl;
            for(int i=0;i<n;i++)
            cin>>tab[i][0][0]>>tab[i][0][1]>>tab[i][1][0]>>tab[i][1][1];
            for(int i=0;i<n;i++)
            cin>>tab2[i][0][0]>>tab2[i][0][1]>>tab2[i][1][0]>>tab2[i][1][1];

            for(int i=0;i<n;i++)
            {
            id[i]=i;
            id2[i]=i;
            }

            sort(id, id+n, cmp);
            sort(id2, id2+n, cmp2);

      //      cout<<"poczatek: "<<endl;
             for(int i=0;i<n;i++)
             {
             wys=tab[i][0][1]-tab[i][1][1];
              if(wys<0)
                wys=wys*(-1);
               // cout<<id[i]<<" wys= "<<wys<<" luz= "<<h-wys<<endl;
                miejsce[id[i]]=i;

            }
       //    cout<<endl;
       //    for(int i=0;i<n;i++)
      //      cout<<"nr: "<<i<<" byl: "<<miejsce[i]<<endl;
        //        cout<<endl;
       //     cout<<"koniec: "<<endl;
             for(int i=0;i<n;i++)
             {
                wys=tab[i][0][1]-tab[i][1][1];
              if(wys<0)
                wys=wys*(-1);
         //      cout<<id2[i]<<" wys= "<<wys<<" luz= "<<h-wys<<endl;
                miejsce2[id2[i]]=i;

            }

        //    for(int i=0;i<n;i++)
          //  cout<<"nr: "<<i<<" jest: "<<miejsce2[i]<<endl;
              //  cout<<endl;

                //juz sprawdzanie

                for(int i=0;i<n;i++)
                {
                     wysokosc=tab[id[i]][0][1]-tab[id[i]][1][1];
              if(wysokosc<0)
                wysokosc=wysokosc*(-1);
                    insert(i, wysokosc);

                }


                for(int i=0;i<n;i++)
                {

                iden=id2[i];
                wys1=tab[iden][0][1]-tab[iden][1][1];
                if(wys1<0)
                wys1=wys1*(-1);
                luzik=h-wys1;
               // cout<<"wys= "<<wys1<<endl;
                insert(miejsce[iden], 0);
               // cout<<query(0, miejsce[iden]);
                wys2=query(0, miejsce[iden]);
                 if(wys2>luzik)
                {
                    odp=false;
                 //   cout<<"breakuje";
                    break;
                }



                }
                if(odp)
                cout<<"TAK\n";
                else
                cout<<"NIE\n";

                for(int p=0;p<2*M;p++)
                w[p]=0;

        }
}