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
#include <cstdio>
//#include <iostream>
#include <algorithm>

using namespace std;

int n,t,w,a,b,c,d,wskaznik;

struct prostokat{
	int x1,x2,h,nr;
};
bool possible,v[50005];

prostokat e,tab[50005],tab2[50005],tab3[50005];

bool sort3(prostokat f, prostokat g)
{
	if(f.x1<g.x1)
	{
		return true;
	}
	else
	if(f.x1==g.x1)
	{
		if(f.x2<g.x2)
		{
			return true;
		}
		else
		return false;
		
	}
	else
	{
		return false;
	}
	
}


int main()
{
	scanf("%d", &t);

	for(int i=0; i<t; i++)
	{
			scanf("%d %d", &n, &w);
		possible=true;
		for(int p=0; p<n; p++)
		{
			scanf("%d %d %d %d", &a, &b , &c, &d);
			
			// \\ // \\ // \\ 
			e.x1=a;
			e.x2=c;
			e.h=d-b;
			e.nr=p;
		//	cout<<"**"<<e.h<<endl;
			tab3[p]=e;
			tab[p]=e;
			
			
		}
		sort(tab,tab+n, sort3);
		for(int p=0; p<n; p++)
		{
			scanf("%d %d %d %d", &a, &b , &c, &d);
			
			// \\ // \\ // \\ 
			e.x1=a;
			e.x2=c;
			e.h=d-b;
			e.nr=p;
			//tab3[p]=e;
			tab2[p]=e;
			v[p]=false;
			
			
		}
		sort(tab2, tab2+n, sort3);
		for(int p=0; p<n; p++)
		{
			//check tab2[p]
			wskaznik=0;
		//	cout<<"bug1";
			v[tab2[p].nr]=true;
			while((tab[wskaznik].nr!=tab2[p].nr) && (wskaznik<n))
			{
			//	cout<<"&&&"<<tab[wskaznik].nr<<" "<<tab2[p].nr<<endl;
					//cout<<"bug2";
					if(v[tab[wskaznik].nr]==false)
					{
					
						c=tab[wskaznik].h+tab2[p].h;
					//	cout<<"$"<<c<<endl;
						if(c>w)
						{
							possible=false;
						//	cout<<"#"<<tab[wskaznik].nr<<" "<<tab2[p].nr<<endl;
							break;
						}
						//wskaznik++;
					}
					wskaznik++;
			}
			if(!possible)
			break;
		}
		if(possible)
		printf("TAK\n");
		else
		printf("NIE\n");
	}
	
	
}