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
//Jakub Sygnowski
#include <cstdio>
#include <algorithm>
#include <vector>
using namespace std;
typedef pair<int,int> pii;
#define F first
#define S second
#define MAXN 50007
int t, n, x11, y11, x22, y22, w;
pair<pii, int> przed[MAXN];
pii po[MAXN];
int prawo[MAXN], lewo[MAXN];
int tmpPrawo[MAXN], tmpLewo[MAXN];
void licz(int x){
    int start = min(x-1, tmpLewo[x]);
    int endd = -1;
    for(int i = tmpLewo[x]; i >=0; i--){
        if (przed[i].F.S + przed[x].F.S > w && i != x){
            break;
        }
        if (przed[i].F.S > przed[x].F.S && tmpLewo[i] != i){
            if (endd == -1)
                endd = i;
            i = tmpLewo[i] + 1;
        }
        tmpLewo[x] = i-1;
    }

    if (endd == -1) 
        endd = tmpLewo[x];

    for(int i = start; i > endd && i >= 0; i--){
        if (przed[i].F.S <= przed[x].F.S){
            tmpLewo[i] = min(tmpLewo[x], tmpLewo[i]);
        }
    }

    start = max(x+1, tmpPrawo[x]); 
    endd = -1;
    for(int i = tmpPrawo[x]; i < n; i++){
        if (przed[i].F.S + przed[x].F.S > w && i != x){
            break;
        }
        if (przed[i].F.S > przed[x].F.S && tmpPrawo[i] != i){
            if (endd == -1)
                endd = i;
            i = tmpPrawo[i] - 1;
        }
        tmpPrawo[x] = i+1;
    }
    if (endd == -1)
        endd = tmpPrawo[x];

    for(int i = start; i < endd && i < n; i++){
        if (przed[i].F.S <= przed[x].F.S){
            tmpPrawo[i] = max(tmpPrawo[x], tmpPrawo[i]);
        }
    }
}

pii wysokosc[MAXN];
void liczStrony(){
    for(int i = 0; i < n; i++){
        tmpLewo[i] = i;
        tmpPrawo[i] = i;
        wysokosc[i] = make_pair(przed[i].F.S, i);
    }
    sort(wysokosc, wysokosc + n);
    for(int i = 0; i < n; i++){
        licz(wysokosc[n-i-1].S);
    }
    for(int i = 0; i < n; i++){
        if (tmpLewo[i] == -1)
            lewo[przed[i].S] = -1;
        else {
            lewo[przed[i].S] = przed[tmpLewo[i]].S;
        }
        if (tmpPrawo[i] == n)
            prawo[przed[i].S] = n;
        else {
            prawo[przed[i].S] = przed[tmpPrawo[i]].S;
        }
    }
}

int gdzie[MAXN];
void liczGdziePo(){
    for(int i = 0; i < n; i++){
        gdzie[po[i].S] = i;
    }
}

bool sprawdz(int x){
    if (lewo[x] != -1){
        if (gdzie[x] < gdzie[lewo[x]])
            return false;
    }
    if (prawo[x] != n){
        if (gdzie[x] > gdzie[prawo[x]])
            return false;
    }
    return true;
}

bool sprWszystkie(){
    for(int i = 0; i < n; i++){
        if (!sprawdz(i))
            return false;
    }
    return true;
}

int abss(int a){
    return a > 0 ? a : -a;
}

int main(){
    scanf("%d",&t);
    while(t--){
        scanf("%d%d", &n, &w);
        for(int i = 0; i < n; i++){
            scanf("%d%d%d%d", &x11, &y11, &x22, &y22);
            przed[i] = make_pair(make_pair(min(x11, x22), abss(y11 - y22)), i);
        }
        for(int i = 0; i < n; i++){
            scanf("%d%d%d%d", &x11, &y11, &x22, &y22);
            po[i] = make_pair(min(x11, x22), i);
        }
        sort(przed, przed + n);
        sort(po, po + n);
        liczStrony();
        liczGdziePo();
        if (sprWszystkie()) printf("TAK\n");
        else printf("NIE\n");
    }
}