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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
#include <algorithm>
#include <iostream>
#include <cstring>
#include <cassert>
#include <vector>
#include <cstdio>
#include <array>
#include <deque>
#include <cmath>
#include <stack>
#include <queue>
#include <set>
#include <map>
namespace {
	using namespace std;

	typedef vector<int> vint;
	typedef long long unsigned ulo;
	typedef long long lint;
	
	void __attribute__((unused)) spacje(int k) {
		int magic;
		static stack<int*> stos;
		while (!stos.empty() && stos.top() <= &magic) stos.pop();
		stos.push(&magic);
		for (int n = k * stos.size(); n--;) fprintf(stderr, " ");
	}
	
	#define BOTH(x) for (int x = 0; x < 2; ++x)
	
	#define UPlt(xx, yy) (xx) = min(xx, yy)
	#define UPgt(xx, yy) (xx) = max(xx, yy)
	
	struct in_t {
		template<class T>
		operator T () {
			static bool __attribute__((unused)) dummy = ios_base::sync_with_stdio(false);
			T x;
			cin >> x;
			return x;
		}
	};
	in_t __attribute__((unused)) in;
	
	class Print {
		ostream & os;
		bool nfirst;
	 public:
		Print(ostream & os = cout) : os(os), nfirst(false) {}
		~Print() { os << endl; }
		template<class T> Print & operator , (T const& e) {
			if (nfirst) os << " "; os << e; nfirst = true; return *this; }
	};
	
	#define print Print{cout},
	#define prerr Print{cerr},
	
	template <class T>
	struct Range {
		struct Intit {
			T x; Intit(T x) : x(x) {}
			T & operator * () { return x; };
			bool operator != (Intit other) { return x < other.x; }
			void operator ++ () { ++x; }
		};
		
		T b, e;
		explicit Range(T n) : b(0), e(n) {}
		Range(T b, T e) : b(b), e(e) {}
		Intit begin() { return b; }
		Intit end() { return e; }
	};
	
	template <class T>
	Range<T> range(T n) { return Range<T>(n); }
	
	template <class T>
	Range<T> range(T b, T e) { return Range<T>(b, e); }

	template <class T>
	Range<T> inclusive(T b, T e) { return Range<T>(b, e + 1); }
	
	#define _ __attribute__((unused)) _
};

#define dprintf(...) if (1) spacje(2), fprintf(stderr, __VA_ARGS__)

struct Car {
	int h;
	int x1s, x2s;
	int x1e, x2e;
	
	bool operator < (Car const& c) const { return h < c.h; }
};

void cswap(int & a, int & b) {
	if (b < a) swap(a, b);
}

struct Rect {
	int x1, y1, x2, y2;
	Rect(in_t & in) : x1(in), y1(in), x2(in), y2(in) {
		cswap(x1, x2);
		cswap(y1, y2);
	}
};

enum Przet { Czysty, Brudny };

struct Prze {
	int x1s, x2s;
	int x1e, x2e;
	Przet typ;
	
	bool operator < (Prze const& p) const { return x1s < p.x1s; }
};

int main() {
	for (int _ : range(int(in))) {
		int n = in;
		int H = in;
		
		vector<Car> cars;
		for (int _ : range(n)) {
			Rect r(in);
			cars.push_back({r.y2 - r.y1, r.x1, r.x2, -1, -1});
		}
		for (int i : range(n)) {
			Rect r{in};
			assert(r.x2 - r.x1 == cars[i].x2s - cars[i].x1s);
			assert(r.y2 - r.y1 == cars[i].h);
			cars[i].x1e = r.x1;
			cars[i].x2e = r.x2;
		}
		
		sort(cars.begin(), cars.end());
		
		const int milion = 1231231234;
		vector<Car> jeszczemale;
		set<Prze> przedzialy = {
			{-2, -1, -2, -1, Brudny},
			{-1, milion, -1, milion, Czysty},
			{milion, milion + 1, milion, milion + 1, Brudny}
		};
		auto i2c = [&](int x) {
			if (x == milion) return '#';
			if (x == milion + 1) return '!';
			if (x == -1) return '-';
			if (x < 0) return '=';
			if (x > 9) return '+';
			return char('0' + x);
		};
		auto __attribute__((unused)) check_consistency = [&]() {
			int lasts = -2;
			int laste = -2;
			Przet blah = Czysty;
			for (Prze p : przedzialy) {
				assert(blah != p.typ);
				blah = p.typ;
				
				assert(lasts == p.x1s);
				assert(p.x1s < p.x2s);
				lasts = p.x2s;
				
				assert(laste == p.x1e);
				assert(p.x1e < p.x2e);
				laste = p.x2e;
			}
		};
		auto __attribute__((unused)) dump = [&](vector<pair<set<Prze>::iterator, string>> const& needles) {
			// ~ return;
			{Print pr{cerr}; for (Prze p : przedzialy) pr, p.typ == Czysty ? "Czysty " : "Brudny "; }
			{Print pr{cerr}; for (Prze p : przedzialy) pr, "(", i2c(p.x1s), i2c(p.x2s), ")"; }
			{Print pr{cerr}; for (Prze p : przedzialy) pr, "(", i2c(p.x1e), i2c(p.x2e), ")"; }
			Print pr{cerr};
			for (auto it = przedzialy.begin(); it != przedzialy.end(); ++it) {
				bool bylo = false;
				string s;
				for (auto para : needles) {
					if (para.first == it) {
						s += para.second;
						bylo = true;
					}
				}
				s.resize(5, ' ');
				if (bylo) pr, "^", s;
				else pr, "       ";
			}
		};
		auto next = [](set<Prze>::iterator it) { return ++it; };
		auto prev = [](set<Prze>::iterator it) { return --it; };
		auto szukaj = [&](int x) {
			return prev( przedzialy.upper_bound({x,0,0,0,Czysty}) );
		};
		auto addprz = [&](Prze wstaw) {
			// ~ prerr "dodaję";
			// find
			auto lewoi = szukaj(wstaw.x1s);
			auto prawoi = szukaj(wstaw.x2s);
			// ~ dump({{lewoi, "le"}, {prawoi, "pra"}});
			
			{
				auto popraw = [&](set<Prze>::iterator it) {
					if (it->typ == Brudny) {
						UPlt(wstaw.x1s, it->x1s);
						UPlt(wstaw.x1e, it->x1e);
						UPgt(wstaw.x2s, it->x2s);
						UPgt(wstaw.x2e, it->x2e);
					}
				};
				
				auto lewoip = lewoi;
				while (lewoip->x2s >= wstaw.x1s || lewoip->x2e >= wstaw.x1e) {
					lewoi = lewoip;
					--lewoip;
				}
				auto prawoin = prawoi;
				while (wstaw.x2s >= prawoin->x1s || wstaw.x2e >= prawoin->x1e) {
					prawoi = prawoin;
					++prawoin;
				}
				
				auto kon = next(prawoi);
				for (auto it = lewoi; it != kon; ++it) {
					popraw(it);
				}
			}
			// prepare
			Prze lewo = *lewoi;
			Prze prawo = *prawoi;
			// ~ dump({{lewoi, "le"}, {prawoi, "pra"}});
			// ~ prerr "lewo", "(", lewo.x1s, lewo.x2s, ")";
			// ~ prerr "prawo", "(", prawo.x1s, prawo.x2s, ")";
			if (lewo.typ == Czysty) {
				lewo.x2s = wstaw.x1s;
				lewo.x2e = wstaw.x1e;
			}
			if (prawo.typ == Czysty) {
				prawo.x1s = wstaw.x2s;
				prawo.x1e = wstaw.x2e;
			}
			// erase
			przedzialy.erase(lewoi, next(prawoi));
			// add
			// ~ dump({});
			// ~ assert(lewo.typ == Czysty && prawo.typ == Czysty);
			if (lewo.typ == Czysty) przedzialy.insert(lewo);
			// ~ dump({});
			if (prawo.typ == Czysty) przedzialy.insert(prawo);
			// ~ dump({});
			przedzialy.insert(wstaw);
			// ~ dump({});
			// ~ check_consistency();
			// ~ prerr "-------------------------------^";
		};
		auto valprz = [&](Prze const& w) {
			// ~ prerr "sprawdzanie";
			auto l = szukaj(w.x1s);
			auto p = szukaj(w.x2s);
			if (p->x1s == w.x2s) p = prev(p);
			// ~ dump({{l,"l"}, {p, "p"}});
			if (l->typ == Brudny) return false;
			if (prev(l)->x2s > w.x1s || prev(l)->x2e > w.x1e) return false;
			if (p->typ == Brudny) return false;
			if (w.x2s > next(p)->x1s || w.x2e > next(p)->x1e) return false;
			// ~ prerr "ok";
			return true;
		};
		
		bool ok = true;
		for (Car c : cars) {
			// ~ prerr "==================================";
			// ~ prerr "(", c.x1s, c.x2s, ") -> (", c.x1e, c.x2e, ")";
			while (!jeszczemale.empty()) {
				Car kandy = jeszczemale.back();
				if (kandy.h + c.h > H) {
					// ~ { Car & c = kandy; prerr "tera (", c.x1s, c.x2s, ") -> (", c.x1e, c.x2e, ")"; };
					addprz({kandy.x1s, kandy.x2s, kandy.x1e, kandy.x2e, Brudny});
					jeszczemale.pop_back();
				} else break;
			}
			if (!valprz({c.x1s, c.x2s, c.x1e, c.x2e, Brudny})) {
				ok = false;
				break;
			}
			jeszczemale.push_back(c);
		}
		
		print ok ? "TAK" : "NIE";
	}
	
	return 0;
}