#include <iostream> #include <algorithm> #include <vector> using namespace std; struct Auto { int x1, y1, x2, y2; int nrNaWejsciu; bool przesuniety; int getW() const { return y2 - y1; } friend istream& operator>>(istream& str, Auto& a); friend ostream& operator<<(ostream& str, const Auto& a); }; istream& operator>>(istream& str, Auto& a) { int x1, y1, x2, y2; str >> x1 >> y1 >> x2 >> y2; a.x1 = min(x1, x2); a.x2 = max(x1, x2); a.y1 = min(y1, y2); a.y2 = max(y1, y2); return str; } ostream& operator<<(ostream& str, const Auto& a) { str << a.nrNaWejsciu+1 << " -> " << a.x1 << ", " << a.getW(); return str; } struct PorAuta { bool operator()(const Auto& a1, const Auto& a2) { if (a1.x1 != a2.x1) return a1.x1 < a2.x1; else return a1.y1 < a2.y1; } }; struct Dane { int n, MAX_W; vector<Auto> poczatkowe; vector<Auto> koncowe; vector<int> nrWejNaRzecz; vector<int> ktoPrzechodziNa; }; void wczytajAuta(int n, vector<Auto>& vec) { for (int i = 0; i < n; ++i) { Auto a; cin >> a; a.nrNaWejsciu = i; a.przesuniety = false; vec.push_back(a); } } void wczytajDane(Dane& d) { cin >> d.n >> d.MAX_W; wczytajAuta(d.n, d.poczatkowe); wczytajAuta(d.n, d.koncowe); } void wyznaczNrWejNaRzecz(Dane& d) { d.nrWejNaRzecz.resize(d.n); for (int i = 0; i < d.n; ++i) { int nr = d.poczatkowe[i].nrNaWejsciu; d.nrWejNaRzecz[nr] = i; } } void wyznaczPermutacje(Dane& d) { d.ktoPrzechodziNa.resize(d.n); for (int i = 0; i < d.n; ++i) { int nrWej = d.koncowe[i].nrNaWejsciu; int nrRzecz = d.nrWejNaRzecz[nrWej]; d.ktoPrzechodziNa[i] = nrRzecz; } } bool przestaw(Dane& d) { for (int i = 0; i < d.n-1; ++i) { int nr = d.ktoPrzechodziNa[i]; int w1 = d.poczatkowe[nr].getW(); //cout << endl << i << endl << "Przesuwam " << d.poczatkowe[nr] << endl; for (int j = nr-1; j >= 0; --j) { if (d.poczatkowe[j].przesuniety) continue; int w2 = d.poczatkowe[j].getW(); //cout << "Mijam " << d.poczatkowe[j] << endl; if (w1 + w2 > d.MAX_W) return false; } d.poczatkowe[nr].przesuniety = true; } return true; } void wypisz(int n, string str, const vector<Auto>& vec) { cout << str << endl; for (int i = 0; i < n; ++i) cout << vec[i] << endl; } void wypiszNrWejNaRzecz(const Dane& d) { cout << "NrWej -> NrRzecz" << endl; for (int i = 0; i < d.n; ++i) cout << i+1 << " -> " << d.nrWejNaRzecz[i] << endl; cout << endl; } void wypiszKolejnosc(const Dane& d) { cout << "Koeljnosc:" << endl; for (int i = 0; i < d.n; ++i) cout << d.ktoPrzechodziNa[i] << " -> " << i << endl; cout << endl; } void doTest() { //cout << "----------------------------------" << endl; Dane d; wczytajDane(d); //cout << "DANE WCZYTANE" << endl; sort(d.poczatkowe.begin(), d.poczatkowe.end(), PorAuta()); //wypisz(d.n, "Poczatkowe: ", d.poczatkowe); sort(d.koncowe.begin(), d.koncowe.end(), PorAuta()); wyznaczNrWejNaRzecz(d); wyznaczPermutacje(d); // wypiszNrWejNaRzecz(d); //wypiszKolejnosc(d); //cout << "Bede przestawial" << endl; if (przestaw(d)) cout << "TAK" << endl; else cout << "NIE" << endl; } int main() { ios_base::sync_with_stdio(0); int t; cin >> t; for (int i = 0; i < t; ++i) doTest(); 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 | #include <iostream> #include <algorithm> #include <vector> using namespace std; struct Auto { int x1, y1, x2, y2; int nrNaWejsciu; bool przesuniety; int getW() const { return y2 - y1; } friend istream& operator>>(istream& str, Auto& a); friend ostream& operator<<(ostream& str, const Auto& a); }; istream& operator>>(istream& str, Auto& a) { int x1, y1, x2, y2; str >> x1 >> y1 >> x2 >> y2; a.x1 = min(x1, x2); a.x2 = max(x1, x2); a.y1 = min(y1, y2); a.y2 = max(y1, y2); return str; } ostream& operator<<(ostream& str, const Auto& a) { str << a.nrNaWejsciu+1 << " -> " << a.x1 << ", " << a.getW(); return str; } struct PorAuta { bool operator()(const Auto& a1, const Auto& a2) { if (a1.x1 != a2.x1) return a1.x1 < a2.x1; else return a1.y1 < a2.y1; } }; struct Dane { int n, MAX_W; vector<Auto> poczatkowe; vector<Auto> koncowe; vector<int> nrWejNaRzecz; vector<int> ktoPrzechodziNa; }; void wczytajAuta(int n, vector<Auto>& vec) { for (int i = 0; i < n; ++i) { Auto a; cin >> a; a.nrNaWejsciu = i; a.przesuniety = false; vec.push_back(a); } } void wczytajDane(Dane& d) { cin >> d.n >> d.MAX_W; wczytajAuta(d.n, d.poczatkowe); wczytajAuta(d.n, d.koncowe); } void wyznaczNrWejNaRzecz(Dane& d) { d.nrWejNaRzecz.resize(d.n); for (int i = 0; i < d.n; ++i) { int nr = d.poczatkowe[i].nrNaWejsciu; d.nrWejNaRzecz[nr] = i; } } void wyznaczPermutacje(Dane& d) { d.ktoPrzechodziNa.resize(d.n); for (int i = 0; i < d.n; ++i) { int nrWej = d.koncowe[i].nrNaWejsciu; int nrRzecz = d.nrWejNaRzecz[nrWej]; d.ktoPrzechodziNa[i] = nrRzecz; } } bool przestaw(Dane& d) { for (int i = 0; i < d.n-1; ++i) { int nr = d.ktoPrzechodziNa[i]; int w1 = d.poczatkowe[nr].getW(); //cout << endl << i << endl << "Przesuwam " << d.poczatkowe[nr] << endl; for (int j = nr-1; j >= 0; --j) { if (d.poczatkowe[j].przesuniety) continue; int w2 = d.poczatkowe[j].getW(); //cout << "Mijam " << d.poczatkowe[j] << endl; if (w1 + w2 > d.MAX_W) return false; } d.poczatkowe[nr].przesuniety = true; } return true; } void wypisz(int n, string str, const vector<Auto>& vec) { cout << str << endl; for (int i = 0; i < n; ++i) cout << vec[i] << endl; } void wypiszNrWejNaRzecz(const Dane& d) { cout << "NrWej -> NrRzecz" << endl; for (int i = 0; i < d.n; ++i) cout << i+1 << " -> " << d.nrWejNaRzecz[i] << endl; cout << endl; } void wypiszKolejnosc(const Dane& d) { cout << "Koeljnosc:" << endl; for (int i = 0; i < d.n; ++i) cout << d.ktoPrzechodziNa[i] << " -> " << i << endl; cout << endl; } void doTest() { //cout << "----------------------------------" << endl; Dane d; wczytajDane(d); //cout << "DANE WCZYTANE" << endl; sort(d.poczatkowe.begin(), d.poczatkowe.end(), PorAuta()); //wypisz(d.n, "Poczatkowe: ", d.poczatkowe); sort(d.koncowe.begin(), d.koncowe.end(), PorAuta()); wyznaczNrWejNaRzecz(d); wyznaczPermutacje(d); // wypiszNrWejNaRzecz(d); //wypiszKolejnosc(d); //cout << "Bede przestawial" << endl; if (przestaw(d)) cout << "TAK" << endl; else cout << "NIE" << endl; } int main() { ios_base::sync_with_stdio(0); int t; cin >> t; for (int i = 0; i < t; ++i) doTest(); return 0; } |