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

struct aut
{
    int p, h, nr;

    friend bool operator < (aut a, aut b)
    {
        return a.p < b.p;
    }
};

map<int,int> wys;
int drz[400005], ile[50005], domapy[100005];
aut tab[50005];

int sum (int kom, int p, int k, int sp, int sk)
{
    if (sp==p && sk==k)
        return drz[kom];

    int sr=(p+k)/2, x=0;

    if (sp<=sr)
        x+=sum(kom*2,p,sr,sp,min(sr,sk));

    if (sk>sr)
        x+=sum(kom*2+1,sr+1,k,max(sr+1,sp),sk);

    return x;
}

void dodaj (int kom, int p, int k, int gdzie)
{
    drz[kom]++;

    if (p!=k)
    {
        int sr=(p+k)/2;

        if (gdzie<=sr)
            dodaj(kom*2,p,sr,gdzie);
        else
            dodaj(kom*2+1,sr+1,k,gdzie);
    }
}

int main ()
{
    int z,n,a,b,c,d,e,f,h,iluz;

    scanf ("%d", &z);

    while (z--)
    {
        scanf ("%d%d", &n, &h);
        wys.clear();

        for (a=0; a<n; a++)
        {
            scanf ("%d%d%d%d", &b, &c, &d, &e);

            if (b>d)
                swap(b,d);

            if (c>e)
                swap(c,e);

            tab[a].h=e-c;
            tab[a].p=b;
            tab[a].nr=a;
            domapy[2*a]=e-c;
            domapy[2*a+1]=h-e+c+1;
        }

        sort(tab,tab+n);
        sort(domapy,domapy+2*n);
        iluz=0;

        for (a=0; a<2*n; a++)
        {
            for (c=a+1; c<2*n && domapy[c]==domapy[a]; c++);
            wys[domapy[a]]=iluz;
            a=c-1;
            iluz++;
        }

        for (a=0; a<n; a++)
        {
            ile[tab[a].nr]=sum(1,0,iluz,wys[h-tab[a].h+1],iluz);
            dodaj(1,0,iluz,wys[tab[a].h]);
        }

        for (a=0; a<400005; a++)
            drz[a]=0;

        for (a=0; a<n; a++)
        {
            scanf ("%d%d%d%d", &b, &c, &d, &e);

            if (b>d)
                swap(b,d);

            if (c>e)
                swap(c,e);

            tab[a].h=e-c;
            tab[a].p=b;
            tab[a].nr=a;
        }

        sort(tab,tab+n);

        for (a=0; a<n; a++)
        {
            if (ile[tab[a].nr] != sum(1,0,iluz,wys[h-tab[a].h+1],iluz))
                break;

            dodaj(1,0,iluz,wys[tab[a].h]);
        }

        for (b=0; b<400005; b++)
            drz[b]=0;

        if (a<n)
            printf ("NIE\n");
        else
            printf ("TAK\n");
    }

    return 0;
}