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

typedef long long ll;

struct car{
    int x1, x2, h, j;
} t1[50001], t2[50001];

int pos[50002];
int T[131100];

inline bool operator<(const car& a, const car& b){
    return (a.x1<b.x1);
}

void Read(car& c, int i){
    int x1, y1, x2, y2;
    scanf("%d%d%d%d", &x1, &y1, &x2, &y2);
    if(x2<x1) swap(x2, x1);
    c.x1=x1;
    c.x2=x2;
    c.h=abs(y2-y1);
    c.j=i;
}

inline int InitTreeSize(int n){
    if(n&(n-1)){
        frexp(n, &n);
        n=1<<n;
    }
    return n;
}

int Query(int a, int b){
    int res=0;
    while(a<b){
        if(a&1) res=max(res, T[a++]);
        if(!(b&1)) res=max(res, T[b--]);
        a>>=1;
        b>>=1;
    }
    if(a==b) res=max(res, T[a]);
    return res;
}

inline void Set(int x){
    T[x]=0;
    while(x>>=1)
        T[x]=max(T[x<<1], T[(x<<1)+1]);
}

int main()
{
    int t, n, w;
    scanf("%d", &t);
    while(t--){
        scanf("%d%d", &n, &w);
        int s=InitTreeSize(n);
        for(int i=0;i<n;++i)
            Read(t1[i], i+1);
        sort(t1, t1+n);
        for(int i=0;i<n;++i){
            Read(t2[i], i+1);
            pos[t1[i].j]=i;
            T[s+i]=t1[i].h;
        }
        sort(t2, t2+n);
        for(int i=s+n;i<(s<<1);++i)
            T[i]=0;
        for(int i=s-1;i;--i)
            T[i]=max(T[i<<1], T[(i<<1)+1]);
        bool f=true;
        for(int i=0;i<n && f;++i){
            int q=pos[t2[i].j];
            int h=Query(s, q+s-1)+t2[i].h;
            Set(q+s);
            f=(h<=w);
        }
        if(f) printf("TAK\n");
        else printf("NIE\n");
    }
}