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
#include <stdio.h>
#include <algorithm>
#include <map>
#include <set>

using namespace std;

struct car {
  int x1,index,height;
};


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

struct car source[50000];
struct car target[50000];

int real_id_to_target_id[50000];

int main() {
  int t;
  int n,w;
  int x1,y1,x2,y2;
  
  
  
  
  scanf("%d", &t);
  for (int i=0;i<t;++i) {
    scanf("%d %d", &n, &w);
    for (int j=0;j<n;++j) {
      scanf("%d %d %d %d", &x1, &y1, &x2, &y2);
      source[j].x1=min(x1,x2);
      source[j].height=max(y1,y2)-min(y1,y2);
      source[j].index=j;
    }
    
    for (int j=0;j<n;++j) {
      scanf("%d %d %d %d", &x1, &y1, &x2, &y2);
      target[j].x1=min(x1,x2);
      target[j].height=max(y1,y2)-min(y1,y2);
      target[j].index=j;
    }
    
    std::sort(&source[0], &source[n],compare);
    std::sort(&target[0], &target[n],compare);
    
    // wysokosci wieksze od polowy musza byc w tej samej kolejnosci

    int polowa = w/2;
    
    int j=0,k=0;
    bool zgodne=true;
    while (true) {
      while (j<n && source[j].height<=polowa) {
        ++j;
      }
      while (k<n && target[k].height<=polowa) {
        ++k;
      }
      
      if (j==n && k==n && source[j].height<=polowa)
        break;
      
      if (source[j].index!=target[k].index) {
        zgodne=false;
        break;
      }
      ++j;
      ++k;
    }
    
    if (!zgodne) {
      printf("NIE\n");
      continue;
    }
    

    map<int, set<int> > source_map; // wysokosc, id
    for (int j=0;j<n;++j) {
      source_map[source[j].height].insert(j);
    }
    
    map<int, set<int> > target_map; // wysokosc, id
    for (int j=0;j<n;++j) {
      target_map[target[j].height].insert(j);
    }
    
    set<int> source_barriers;
    set<int> target_barriers;
    
    // idac od najmneijszych tworzymy zbior z id wysokosciami, ktorych nei moze przekroczyc
    map<int, set<int> >::iterator s_it = source_map.begin();
    map<int, set<int> >::iterator s_rit = source_map.end();
    
    map<int, set<int> >::iterator t_it = target_map.begin();
    map<int, set<int> >::iterator t_rit = target_map.end();
    
    set<int>::iterator itlow,itup;
    
    //potrzbne wyszukiwanie indeksu w target po prawdziwym id
    for (int j=0;j<n;++j) {
      real_id_to_target_id[target[j].index]=j;
    }
    
   set<int>::iterator it1,it2;
   int a,b,a2,b2,real_id;
    --s_rit;
    --t_rit;

    while (s_it!=source_map.end() && s_it->first<=polowa) { //end?

      
      while (s_rit->first>polowa && s_rit->first > (w - s_it->first)) {

        source_barriers.insert(s_rit->second.begin(), s_rit->second.end());
        target_barriers.insert(t_rit->second.begin(), t_rit->second.end());
        
        --s_rit;
        --t_rit;
      }
      

      
      
      //przegladnij wszystkie z ta wysokoscia i sprawdz bariery
      // porownaj z targetem
      it1=s_it->second.begin();
      it2=t_it->second.begin();
      for (; it1!=s_it->second.end();++it1,++it2) {
        // dla kazdego *it znajdz prawdziwe indeksy obok z source_barriers
        //int a,b;
        itlow=source_barriers.lower_bound(*it1); // rowne lub wieksze
        itup=source_barriers.upper_bound(*it1); // wieksze
        if (itup==source_barriers.end()) {
          b=-1;
        }
        else {
          b=source[*itup].index;
        }
        if (itlow==source_barriers.begin()) {
          a=-1;
        }
        else {
          --itlow;
          a=source[*itlow].index;
        }

        
        real_id = source[*it1].index;
        

        //int a2,b2;
        itlow=target_barriers.lower_bound(real_id_to_target_id[real_id]); // rowne lub wieksze
        itup=target_barriers.upper_bound(real_id_to_target_id[real_id]); // wieksze
        if (itup==target_barriers.end()) {
          b2=-1;
        }
        else {
          b2=target[*itup].index;
        }
        if (itlow==target_barriers.begin()) {
          a2=-1;
        }
        else {
          --itlow;
          a2=target[*itlow].index;
        }

        
        if (a!=a2 || b!=b2) {
          zgodne=false;
          break;
        }
      }
    
      if (!zgodne) {
        break;
      }
      
      ++s_it;
      ++t_it;
    }
    if (!zgodne) {
        printf("NIE\n");
    }
    else {
      printf("TAK\n");
    }

  }
}