#include <stdio.h> #include <vector> #include <algorithm> #include <set> #include <assert.h> typedef std::pair<int, int> IntPair; int max(int a, int b){ return a > b ? a : b; } int min(int a, int b){ return a < b ? a : b; } //class InclusionSpaces{ //public: // std::vector<IntPair> spaces; // std::set<int> ids; // int addSpace(int id, int begin, int end){ // if (this->ids.find(id) != this->ids.end()) return 1; // for(int i = 0; i < (int)this->spaces.size(); i++){ // int b = this->spaces[i].first; // int e = this->spaces[i].second; // if ((b <= begin && end <= e) || // (begin <= b && e <= end)){ // //tutaj wszystko jest ok i po koncu petli dodajemy przedzial // } else { // return 0; // } // } // this->ids.insert(id); // this->spaces.push_back(IntPair(begin,end)); // return 1; // } // int checkSpace(int id, int begin, int end){ // if (this->ids.find(id) != this->ids.end()) return 1; // for(int i = 0; i < (int)this->spaces.size(); i++){ // int b = this->spaces[i].first; // int e = this->spaces[i].second; // if ((b <= begin && end <= e) || // (begin <= b && e <= end)){ // //tutaj wszystko jest ok i sprawdzamy dalej // } else { // return 0; // } // } // return 1; // } //}; //class TreeSpaces{ //public: // std::vector<IntPair> inclusionSpaces; // std::set<int> ids; // TreeSpaces * left; // TreeSpaces * right; // TreeSpaces():left(NULL), right(NULL){}; // virtual ~TreeSpaces(){ // if (this->left) delete(this->left); // if (this->right) delete(this->right); // }; // int addSpace(int id, int begin, int end){ // printf("add space %d (%d %d)\n",id, begin, end); // if (this->ids.find(id) != this->ids.end()) return 1; // int flag = 0; //1-lewo 2-prawo, obie opcje sie wykluczaja // for(int i = 0; i < (int)this->inclusionSpaces.size(); i++){ // int b = this->inclusionSpaces[i].first; // int e = this->inclusionSpaces[i].second; // if ((b < begin && end < e) || // (begin < b && e < end)){ // //tutaj wszystko jest ok i po koncu petli dodajemy przedzial // } else if (end <= b) { //tutaj dodajemy przedzial na lewo // flag = 1; // } else if (e <= begin){ // flag = 2; // } else { // return 0; // } // } // if (flag == 0){ // this->ids.insert(id); // this->inclusionSpaces.push_back(IntPair(begin,end)); // return 1; // } if (flag == 1) { // if (this->left == NULL) this->left = new TreeSpaces(); // printf("add left\n"); // return this->left->addSpace(id, begin, end); // } else if (flag == 2){ // if (this->right == NULL) this->right = new TreeSpaces(); // printf("add right\n"); // return this->right->addSpace(id, begin, end); // } else { // //niemozliwe // assert(0); // return 0; // } // } // int checkSpace(int id, int begin, int end){ // printf("check space %d (%d %d)\n",id, begin, end); // if (this->ids.find(id) != this->ids.end()) return 1; // int flag = 0; //1-lewo 2-prawo, obie opcje sie wykluczaja // for(int i = 0; i < (int)this->inclusionSpaces.size(); i++){ // int b = this->inclusionSpaces[i].first; // int e = this->inclusionSpaces[i].second; // if ((b < begin && end < e) || // (begin < b && e < end)){ // //tutaj wszystko jest ok i po koncu petli dodajemy przedzial // } else if (end <= b) { //tutaj dodajemy przedzial na lewo // flag = 1; // } else if (e <= begin){ // flag = 2; // } else { // return 0; // } // } // if (flag == 0){ // return 1; // } if (flag == 1) { // if (this->left == NULL) return 1; // return this->left->checkSpace(id, begin, end); // } else if (flag == 2){ // if (this->right == NULL) return 1; // return this->right->checkSpace(id, begin, end); // } else { // //niemozliwe // assert(0); // return 0; // } // } //}; class TreeSpaces{ public: int ids; int begin; int end; TreeSpaces * left; TreeSpaces * right; TreeSpaces():ids(-1), begin(-1), end(-1), left(NULL), right(NULL){}; virtual ~TreeSpaces(){ if (this->left) delete(this->left); if (this->right) delete(this->right); }; int addSpace(int id, int begin, int end){ // printf("add space %d (%d %d)\n",id, begin, end); if (this->ids == -1){ this->ids = id; this->begin = begin; this->end = end; return 1; } if ((this->begin <= begin && end <= this->end) || (begin <= this->begin && this->end <= end)){ //inkluzja wiec przedzial odpada return 0; } else if (this->end <= end) { //dodajemy na prawo if (this->right == NULL) this->right = new TreeSpaces(); // printf("add right\n"); return this->right->addSpace(id, begin, end); } else if (begin <= this->begin){ //dodajemy na lewo if (this->left == NULL) this->left = new TreeSpaces(); // printf("add left\n"); return this->left->addSpace(id, begin, end); } else { assert(0); return 0; } } int checkSpace(int id, int begin, int end){ // printf("checkSpace %d (%d %d)\n",id, begin, end); if (this->ids == -1 || this->ids == id){ return 1; } if ((this->begin <= begin && end <= this->end) || (begin <= this->begin && this->end <= end)){ //inkluzja wiec przedzial odpada // printf("koliduje z %d \n", this->ids); return 0; } else if (this->end <= end) { //szukamy na prawo if (this->right == NULL) return 1; // printf("check right\n"); return this->right->addSpace(id, begin, end); } else if (begin <= this->begin){ //szukamy na lewo if (this->left == NULL) return 1; // printf("check left\n"); return this->left->addSpace(id, begin, end); } else { assert(0); return 0; } } int checkSpaceOpposite(int id, int begin, int end){ //tutaj przedzialy musza byc rozlaczne // printf("checkSpaceOpposite %d (%d %d)\n",id, begin, end); if (this->ids == -1 || this->ids == id){ return 1; } if (this->end <= begin) { //szukamy na prawo if (this->right == NULL) return 1; // printf("check right\n"); return this->right->addSpace(id, begin, end); } else if (end <= this->begin){ //szukamy na lewo if (this->left == NULL) return 1; // printf("check left\n"); return this->left->addSpace(id, begin, end); } else { // printf("koliduje z %d \n", this->ids); return 0; } } }; int process_one_case(){ int n, w; scanf("%d %d", &n, &w); int x1, y1, x2, y2; std::vector<IntPair> beforePos; std::vector<IntPair> afterPos; std::vector<IntPair> sizeId; // std::vector<IntPair> idSize; std::vector<int> positionBeforeId(n,0); std::vector<int> positionAfterId(n,0); for(int i = 0; i < n; i++){ scanf("%d %d %d %d", &x1, &y1, &x2, &y2); beforePos.push_back(IntPair(x1,i)); sizeId.push_back(IntPair(y2-y1,i)); // idSize.push_back(IntPair(i,y2-y1)); } std::sort(sizeId.begin(), sizeId.end()); std::sort(beforePos.begin(), beforePos.end()); for(int i = 0; i < n; i++){ positionBeforeId[beforePos[i].second] = i; //tutaj mamy mape z identyfikatora do pozycji na liscie } for(int i = 0; i < n; i++){ scanf("%d %d %d %d", &x1, &y1, &x2, &y2); afterPos.push_back(IntPair(x1,i)); } std::sort(afterPos.begin(), afterPos.end()); for(int i = 0; i < n; i++){ positionAfterId[afterPos[i].second] = i; //tutaj mamy mape z identyfikatora do pozycji na liscie } // for(int i = 0; i < n; i++){//sprawdzamy poprawnosc niezachodzenia na siebie // printf("no %d position before %d begin %d\n",beforePos[i].second, positionBeforeId[beforePos[i].second], beforePos[i].first); // } // for(int i = 0; i < n; i++){ // printf("no %d position after %d begin %d\n",afterPos[i].second, positionAfterId[afterPos[i].second], afterPos[i].first); // } // for(int i = 0; i < n; i++){ // printf("no %d start %d end %d\n", i , positionBeforeId[i], positionAfterId[i]); // } int lastIndex = n - 1; TreeSpaces treeSpacesLeftRight; TreeSpaces treeSpacesRightLeft; for(int i = 0; i < n; i++){ while (lastIndex >= 0 && sizeId[i].first + sizeId[lastIndex].first > w) {//jesli ma sie nei zmiescic to blokujemy przedzial do momentu kiedy wszystkie zle sa juz w kolekcji int begin = positionBeforeId[sizeId[lastIndex].second]; int end = positionAfterId[sizeId[lastIndex].second]; // printf("DODAJEMY PRZDZIAL DO KOLEKCJI dla samochodu %d o wysokosci %d przedzial %d %d\n",sizeId[lastIndex].second, sizeId[lastIndex].first,begin, end); if (begin < end ) if (!treeSpacesLeftRight.addSpace(sizeId[lastIndex].second, begin, end)) return 0; if (begin >= end ) if (!treeSpacesRightLeft.addSpace(sizeId[lastIndex].second, end, begin)) return 0; lastIndex--; } //tutaj sprawdzamy czy z zadnym sie nie przetnie int begin = positionBeforeId[sizeId[i].second]; int end = positionAfterId[sizeId[i].second]; // printf("SPRAWDZAMY PRZEDZIAL W KOLEKCJI dla samochodu %d o wysokosci %d przedzial %d %d\n",sizeId[i].second, sizeId[i].first,begin, end); if (begin < end ) if (!treeSpacesLeftRight.checkSpace(sizeId[i].second, begin, end) || !treeSpacesRightLeft.checkSpaceOpposite(sizeId[i].second, begin, end)) return 0; if (begin >= end ) if (!treeSpacesRightLeft.checkSpace(sizeId[i].second, end, begin) || !treeSpacesLeftRight.checkSpaceOpposite(sizeId[i].second, end, begin)) return 0; // if (!checkSpace(tree, sizeId[i].second, begin, end)) return 0; } return 1; } int main(){ int n; scanf("%d", &n); for(int i = 0; i < n; i++){ int r = process_one_case(); if (r) printf("TAK\n"); else printf("NIE\n"); } return 0; }
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 294 295 296 297 | #include <stdio.h> #include <vector> #include <algorithm> #include <set> #include <assert.h> typedef std::pair<int, int> IntPair; int max(int a, int b){ return a > b ? a : b; } int min(int a, int b){ return a < b ? a : b; } //class InclusionSpaces{ //public: // std::vector<IntPair> spaces; // std::set<int> ids; // int addSpace(int id, int begin, int end){ // if (this->ids.find(id) != this->ids.end()) return 1; // for(int i = 0; i < (int)this->spaces.size(); i++){ // int b = this->spaces[i].first; // int e = this->spaces[i].second; // if ((b <= begin && end <= e) || // (begin <= b && e <= end)){ // //tutaj wszystko jest ok i po koncu petli dodajemy przedzial // } else { // return 0; // } // } // this->ids.insert(id); // this->spaces.push_back(IntPair(begin,end)); // return 1; // } // int checkSpace(int id, int begin, int end){ // if (this->ids.find(id) != this->ids.end()) return 1; // for(int i = 0; i < (int)this->spaces.size(); i++){ // int b = this->spaces[i].first; // int e = this->spaces[i].second; // if ((b <= begin && end <= e) || // (begin <= b && e <= end)){ // //tutaj wszystko jest ok i sprawdzamy dalej // } else { // return 0; // } // } // return 1; // } //}; //class TreeSpaces{ //public: // std::vector<IntPair> inclusionSpaces; // std::set<int> ids; // TreeSpaces * left; // TreeSpaces * right; // TreeSpaces():left(NULL), right(NULL){}; // virtual ~TreeSpaces(){ // if (this->left) delete(this->left); // if (this->right) delete(this->right); // }; // int addSpace(int id, int begin, int end){ // printf("add space %d (%d %d)\n",id, begin, end); // if (this->ids.find(id) != this->ids.end()) return 1; // int flag = 0; //1-lewo 2-prawo, obie opcje sie wykluczaja // for(int i = 0; i < (int)this->inclusionSpaces.size(); i++){ // int b = this->inclusionSpaces[i].first; // int e = this->inclusionSpaces[i].second; // if ((b < begin && end < e) || // (begin < b && e < end)){ // //tutaj wszystko jest ok i po koncu petli dodajemy przedzial // } else if (end <= b) { //tutaj dodajemy przedzial na lewo // flag = 1; // } else if (e <= begin){ // flag = 2; // } else { // return 0; // } // } // if (flag == 0){ // this->ids.insert(id); // this->inclusionSpaces.push_back(IntPair(begin,end)); // return 1; // } if (flag == 1) { // if (this->left == NULL) this->left = new TreeSpaces(); // printf("add left\n"); // return this->left->addSpace(id, begin, end); // } else if (flag == 2){ // if (this->right == NULL) this->right = new TreeSpaces(); // printf("add right\n"); // return this->right->addSpace(id, begin, end); // } else { // //niemozliwe // assert(0); // return 0; // } // } // int checkSpace(int id, int begin, int end){ // printf("check space %d (%d %d)\n",id, begin, end); // if (this->ids.find(id) != this->ids.end()) return 1; // int flag = 0; //1-lewo 2-prawo, obie opcje sie wykluczaja // for(int i = 0; i < (int)this->inclusionSpaces.size(); i++){ // int b = this->inclusionSpaces[i].first; // int e = this->inclusionSpaces[i].second; // if ((b < begin && end < e) || // (begin < b && e < end)){ // //tutaj wszystko jest ok i po koncu petli dodajemy przedzial // } else if (end <= b) { //tutaj dodajemy przedzial na lewo // flag = 1; // } else if (e <= begin){ // flag = 2; // } else { // return 0; // } // } // if (flag == 0){ // return 1; // } if (flag == 1) { // if (this->left == NULL) return 1; // return this->left->checkSpace(id, begin, end); // } else if (flag == 2){ // if (this->right == NULL) return 1; // return this->right->checkSpace(id, begin, end); // } else { // //niemozliwe // assert(0); // return 0; // } // } //}; class TreeSpaces{ public: int ids; int begin; int end; TreeSpaces * left; TreeSpaces * right; TreeSpaces():ids(-1), begin(-1), end(-1), left(NULL), right(NULL){}; virtual ~TreeSpaces(){ if (this->left) delete(this->left); if (this->right) delete(this->right); }; int addSpace(int id, int begin, int end){ // printf("add space %d (%d %d)\n",id, begin, end); if (this->ids == -1){ this->ids = id; this->begin = begin; this->end = end; return 1; } if ((this->begin <= begin && end <= this->end) || (begin <= this->begin && this->end <= end)){ //inkluzja wiec przedzial odpada return 0; } else if (this->end <= end) { //dodajemy na prawo if (this->right == NULL) this->right = new TreeSpaces(); // printf("add right\n"); return this->right->addSpace(id, begin, end); } else if (begin <= this->begin){ //dodajemy na lewo if (this->left == NULL) this->left = new TreeSpaces(); // printf("add left\n"); return this->left->addSpace(id, begin, end); } else { assert(0); return 0; } } int checkSpace(int id, int begin, int end){ // printf("checkSpace %d (%d %d)\n",id, begin, end); if (this->ids == -1 || this->ids == id){ return 1; } if ((this->begin <= begin && end <= this->end) || (begin <= this->begin && this->end <= end)){ //inkluzja wiec przedzial odpada // printf("koliduje z %d \n", this->ids); return 0; } else if (this->end <= end) { //szukamy na prawo if (this->right == NULL) return 1; // printf("check right\n"); return this->right->addSpace(id, begin, end); } else if (begin <= this->begin){ //szukamy na lewo if (this->left == NULL) return 1; // printf("check left\n"); return this->left->addSpace(id, begin, end); } else { assert(0); return 0; } } int checkSpaceOpposite(int id, int begin, int end){ //tutaj przedzialy musza byc rozlaczne // printf("checkSpaceOpposite %d (%d %d)\n",id, begin, end); if (this->ids == -1 || this->ids == id){ return 1; } if (this->end <= begin) { //szukamy na prawo if (this->right == NULL) return 1; // printf("check right\n"); return this->right->addSpace(id, begin, end); } else if (end <= this->begin){ //szukamy na lewo if (this->left == NULL) return 1; // printf("check left\n"); return this->left->addSpace(id, begin, end); } else { // printf("koliduje z %d \n", this->ids); return 0; } } }; int process_one_case(){ int n, w; scanf("%d %d", &n, &w); int x1, y1, x2, y2; std::vector<IntPair> beforePos; std::vector<IntPair> afterPos; std::vector<IntPair> sizeId; // std::vector<IntPair> idSize; std::vector<int> positionBeforeId(n,0); std::vector<int> positionAfterId(n,0); for(int i = 0; i < n; i++){ scanf("%d %d %d %d", &x1, &y1, &x2, &y2); beforePos.push_back(IntPair(x1,i)); sizeId.push_back(IntPair(y2-y1,i)); // idSize.push_back(IntPair(i,y2-y1)); } std::sort(sizeId.begin(), sizeId.end()); std::sort(beforePos.begin(), beforePos.end()); for(int i = 0; i < n; i++){ positionBeforeId[beforePos[i].second] = i; //tutaj mamy mape z identyfikatora do pozycji na liscie } for(int i = 0; i < n; i++){ scanf("%d %d %d %d", &x1, &y1, &x2, &y2); afterPos.push_back(IntPair(x1,i)); } std::sort(afterPos.begin(), afterPos.end()); for(int i = 0; i < n; i++){ positionAfterId[afterPos[i].second] = i; //tutaj mamy mape z identyfikatora do pozycji na liscie } // for(int i = 0; i < n; i++){//sprawdzamy poprawnosc niezachodzenia na siebie // printf("no %d position before %d begin %d\n",beforePos[i].second, positionBeforeId[beforePos[i].second], beforePos[i].first); // } // for(int i = 0; i < n; i++){ // printf("no %d position after %d begin %d\n",afterPos[i].second, positionAfterId[afterPos[i].second], afterPos[i].first); // } // for(int i = 0; i < n; i++){ // printf("no %d start %d end %d\n", i , positionBeforeId[i], positionAfterId[i]); // } int lastIndex = n - 1; TreeSpaces treeSpacesLeftRight; TreeSpaces treeSpacesRightLeft; for(int i = 0; i < n; i++){ while (lastIndex >= 0 && sizeId[i].first + sizeId[lastIndex].first > w) {//jesli ma sie nei zmiescic to blokujemy przedzial do momentu kiedy wszystkie zle sa juz w kolekcji int begin = positionBeforeId[sizeId[lastIndex].second]; int end = positionAfterId[sizeId[lastIndex].second]; // printf("DODAJEMY PRZDZIAL DO KOLEKCJI dla samochodu %d o wysokosci %d przedzial %d %d\n",sizeId[lastIndex].second, sizeId[lastIndex].first,begin, end); if (begin < end ) if (!treeSpacesLeftRight.addSpace(sizeId[lastIndex].second, begin, end)) return 0; if (begin >= end ) if (!treeSpacesRightLeft.addSpace(sizeId[lastIndex].second, end, begin)) return 0; lastIndex--; } //tutaj sprawdzamy czy z zadnym sie nie przetnie int begin = positionBeforeId[sizeId[i].second]; int end = positionAfterId[sizeId[i].second]; // printf("SPRAWDZAMY PRZEDZIAL W KOLEKCJI dla samochodu %d o wysokosci %d przedzial %d %d\n",sizeId[i].second, sizeId[i].first,begin, end); if (begin < end ) if (!treeSpacesLeftRight.checkSpace(sizeId[i].second, begin, end) || !treeSpacesRightLeft.checkSpaceOpposite(sizeId[i].second, begin, end)) return 0; if (begin >= end ) if (!treeSpacesRightLeft.checkSpace(sizeId[i].second, end, begin) || !treeSpacesLeftRight.checkSpaceOpposite(sizeId[i].second, end, begin)) return 0; // if (!checkSpace(tree, sizeId[i].second, begin, end)) return 0; } return 1; } int main(){ int n; scanf("%d", &n); for(int i = 0; i < n; i++){ int r = process_one_case(); if (r) printf("TAK\n"); else printf("NIE\n"); } return 0; } |