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
// Krzysztof Baranski
////////////////////////////////////////////////////////////////////
//                                                                //
//                           HEADERS                              //
//                                                                //
//////////////////////////////////////////////////////////////////// 
// includes
#include <cstdio>
#include <algorithm>
#include <vector>
using namespace std;
// defines
#define FOR(x,b,e) for(register int x=b; x<=(e); ++x)
#define REP(x,n) for(register int x=0; x<(n); ++x)
#define VAR(v,n) decltype(n) v=(n)
#define ALL(c) c.begin(),c.end()
#define SIZE(x) (int)x.size()
#define PB push_back

#define __START__ int __z_;scanf("%d\n",&__z_);while(__z_--){
#define __STOP__ }return 0;
#define _INT(x) int x; scanf("%d",&x) 
// typedef
typedef vector<int> VI;
////////////////////////////////////////////////////////////////////
//----------------------------------------------------------------//
////////////////////////////////////////////////////////////////////

inline void READ(int* a)
{
    register char c=0;
    while((c=getchar_unlocked())<33);
    *a=0;
    do *a=*a*10+c-'0'; while((c=getchar_unlocked())>33);
}

struct Car {
	int id;
	int x1,y1,x2,y2;
	static int w;
	Car(){}
	Car(int id,int x1=-1,int y1=-1,int x2=-1,int y2=-1):id(id),x1(x1),y1(y1),x2(x2),y2(y2){}
	
	Car& Load() {
		READ(&x1);READ(&y1);READ(&x2);READ(&y2);
		if(x1>x2) swap(x1,x2),swap(y1,y2);
		if(y1>y2) swap(y1,y2);
		return *this;
	}
	
	int Height() const {return y2-y1;}
	
	static bool IsSwapPossible(int h1,int h2) {
		return (h1+h2)<=Car::w;
	}
};
int Car::w;
bool operator<(const Car&a,const Car&b){return (a.x1==b.x1) ? (a.y1 > b.y1) : (a.x1<b.x1);}

struct Comparator {
	const VI& pozycja_w_docelowym;
	
	Comparator(const VI& pozycja_w_docelowym):pozycja_w_docelowym(pozycja_w_docelowym){}
	
	bool operator()(const Car&a,const Car&b) const {
		return pozycja_w_docelowym[a.id] < pozycja_w_docelowym[b.id];
	}
};

//===========================================================================| MERGE SORT
template <class T,class Compare> bool MergeSort(vector<T>& array, int begin, int end, Compare& comp)
{
    // if nothing to sort
    if(begin>=end) return false;

    // split point
    register int part=(begin+end)>>1;

    // sort partitions
    if(MergeSort(array,begin,part,comp)) return true;
	if(MergeSort(array,part+1,end,comp)) return true;
    
    // merging
    register int i,j,a,max_height;
    vector<T> tmp_array(end-begin+1);

    ////////////////////////////////////////////////////////////////
    ///////////////////////  INVERSIONS  ///////////////////////////
    ////////////////////////////////////////////////////////////////
    i=begin;
    j=part+1;
    max_height=0;
    for(;i<=part;++i,j=max(j-1,part+1)) while(j<=end && comp(array[j],array[i])) {
		max_height=max(max_height,array[j].Height());
		if(!Car::IsSwapPossible(array[i].Height(),max_height)) return true;
		++j;
	}
    ////////////////////////////////////////////////////////////////
    ////////////////////////////////////////////////////////////////

    i=begin;
    j=part+1;
    a=0;
    
    while(i<=part && j<=end)
        if(!comp(array[j],array[i]))
            tmp_array[a++]=array[i++];
        else
            tmp_array[a++]=array[j++];
    while(i<=part) tmp_array[a++]=array[i++];
    while(j<=end) tmp_array[a++]=array[j++];
    
    // rewrite from helper array to main array
    for(i=0;i<=end-begin;++i) array[begin+i]=tmp_array[i];
    return false;
}

//==================================================================| MAIN
int main() {	
	__START__

	_INT(n);_INT(w);
	Car::w = w;
	
	
	vector<Car> poczatkowe;
	vector<Car> docelowe;
	
	// load data
	REP(i,n) poczatkowe.PB(Car(i).Load());
	REP(i,n) docelowe.PB(Car(i).Load());
	
	// sort
	sort(ALL(poczatkowe));
	sort(ALL(docelowe));
	
	VI pozycja_w_docelowym(n);
	
	// ustalanie pozycjii
	REP(i,n) pozycja_w_docelowym[docelowe[i].id]=i;
	
	Comparator comparator(pozycja_w_docelowym);
	
	if(MergeSort(poczatkowe,0,n-1,comparator)) printf("NIE\n");
	else printf("TAK\n");

	__STOP__
}