#include <iostream> #include <map> #include <string> #include <vector> using namespace std; struct Ludzik { int indeks; int delta_min; int delta_max; }; typedef vector< Ludzik > ludziki_t; struct Stan { int pocz; int kon_min; int kon_max; Stan( int pocz, int kon_min, int kon_max ) : pocz(pocz), kon_min(kon_min), kon_max(kon_max) {}; bool zgoda() { return pocz < kon_max; } }; typedef vector< Stan > stos_t; struct Podawacz { int poz; int ile; vector< Ludzik > const& lud; bool daj( Ludzik& l ) { int ten = poz; poz+=1; if( ten < lud.size() ) { l = lud[ten]; return true; } else { return false; } }; bool nastepny( Ludzik& l ) { if( poz < lud.size() ) { l = lud[poz]; return true; } else { return false; } }; void ustaw( int poz ) { this->poz = poz; }; int ile_ludzikow() { return lud.size(); }; Podawacz( ludziki_t const& lud ) : poz(0), ile(lud.size()), lud(lud) {}; }; ostream& operator<< ( ostream&, Ludzik const& ); ostream& operator<< ( ostream&, Stan const& ); template <typename T> ostream& operator<< ( ostream&, vector< T > const& ); pair< int, int > ile_druzyn( Podawacz& p ) { stos_t stos; int stos_maksimum = p.ile_ludzikow() + 2; map< int, int > zliczenia; zliczenia[0] = 0; Stan harcownik( 0, -10, 1e9); stos.push_back( harcownik ); // wybieraj najkrotsze i potem wydluzaj while( stos.size() ) { //cerr << ""; string indent( 2 * stos.size(), ' ' ); //cerr << stos << endl; Ludzik ludzik; bool stos_push = false; bool stos_pop = false; if( p.daj( ludzik ) ) { //cerr << indent << "Wzialem ludzika " << ludzik << endl; //cerr << indent << "Gdyby zaczynal [" << ludzik.indeks + ludzik.delta_min << ":" << ludzik.indeks + ludzik.delta_max << "]>" << endl; //cerr << indent << "Z uwg. na stos [" << stos.back().pocz + ludzik.delta_min << ":" << stos.back().pocz + ludzik.delta_max << "]>" << endl; // Uwzglednij wymagania ludzika stos.back().kon_min = max( stos.back().kon_min, stos.back().pocz + ludzik.delta_min ); stos.back().kon_max = min( stos.back().kon_max, stos.back().pocz + ludzik.delta_max ); //cerr << indent << "Zmodyfikowany stos.back() " << stos.back() << endl; if( (stos.back().kon_min <= 1 + ludzik.indeks ) && (stos.back().kon_max >= 1 + ludzik.indeks ) ) { stos_push = true; } else if ( (stos.back().kon_max < ludzik.indeks ) || (stos.back().kon_min > stos_maksimum ) ) { stos_pop = true; } } else { //cerr << indent << "Koniec ludzikow" << endl; stos_pop = true; } if( stos_push ) { //cerr << indent << "stos_push - KONIEC DRUZYNY " << ludzik.indeks << endl; // podgladam ludzika i uzywam go // do okreslenia kolejnych warunkow if( p.nastepny( ludzik )) { //cerr << indent << "podgladam kolejnego " << ludzik << endl; Stan s( // gdzie zaczyna sie druzyna ludzik.indeks, // gdzie najwczesniej moze sie skonczyc ludzik.indeks + ludzik.delta_min, // gdzie najpozniej musi sie skonczyc ludzik.indeks + ludzik.delta_max ); stos.push_back( s ); } else { //cerr << indent << "nie ma kolejnych - JEST PODZIAL (" << stos.size() << " druzyn)" << endl; zliczenia[stos.size()] += 1; stos_pop = true; } } if( stos_pop ) { //cerr << indent << "stos_unwind" << endl; //cerr << indent << stos << endl; int pocz = stos.back().pocz; stos.pop_back(); if( stos.size() ) { stos.back().kon_min = pocz; p.ustaw( pocz ); } } } pair< int, int > wynik = * zliczenia.rbegin(); return wynik; } int main() { int ile_ludzikow; cin >> ile_ludzikow; ludziki_t ludziki( ile_ludzikow ); for( int i = 0; i < ile_ludzikow; ++i ) { int malo; int duzo; cin >> malo >> duzo; ludziki[i].delta_min = malo; ludziki[i].delta_max = duzo; ludziki[i].indeks = i; } //cerr << "Na boisku" << endl; //cerr << ludziki << endl; Podawacz p( ludziki ); pair< int, int > wynik = ile_druzyn( p ); if( wynik.first == 0 ) { cout << "NIE\n"; } else { cout << wynik.first << " " << wynik.second << endl; } } ostream& operator<< ( ostream& os, Ludzik const& l ) { os << "{" << l.indeks << ": " << l.delta_min << " " << l.delta_max << "}"; return os; } ostream& operator<< ( ostream& os, Stan const& s ) { os << s.pocz << " [" << s.kon_min << " " << s.kon_max << "]>"; return os; } template <typename T> ostream& operator<< ( ostream& os, vector< T > const& v) { for( auto e : v ) { os << e << " "; } return os; }
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 | #include <iostream> #include <map> #include <string> #include <vector> using namespace std; struct Ludzik { int indeks; int delta_min; int delta_max; }; typedef vector< Ludzik > ludziki_t; struct Stan { int pocz; int kon_min; int kon_max; Stan( int pocz, int kon_min, int kon_max ) : pocz(pocz), kon_min(kon_min), kon_max(kon_max) {}; bool zgoda() { return pocz < kon_max; } }; typedef vector< Stan > stos_t; struct Podawacz { int poz; int ile; vector< Ludzik > const& lud; bool daj( Ludzik& l ) { int ten = poz; poz+=1; if( ten < lud.size() ) { l = lud[ten]; return true; } else { return false; } }; bool nastepny( Ludzik& l ) { if( poz < lud.size() ) { l = lud[poz]; return true; } else { return false; } }; void ustaw( int poz ) { this->poz = poz; }; int ile_ludzikow() { return lud.size(); }; Podawacz( ludziki_t const& lud ) : poz(0), ile(lud.size()), lud(lud) {}; }; ostream& operator<< ( ostream&, Ludzik const& ); ostream& operator<< ( ostream&, Stan const& ); template <typename T> ostream& operator<< ( ostream&, vector< T > const& ); pair< int, int > ile_druzyn( Podawacz& p ) { stos_t stos; int stos_maksimum = p.ile_ludzikow() + 2; map< int, int > zliczenia; zliczenia[0] = 0; Stan harcownik( 0, -10, 1e9); stos.push_back( harcownik ); // wybieraj najkrotsze i potem wydluzaj while( stos.size() ) { //cerr << ""; string indent( 2 * stos.size(), ' ' ); //cerr << stos << endl; Ludzik ludzik; bool stos_push = false; bool stos_pop = false; if( p.daj( ludzik ) ) { //cerr << indent << "Wzialem ludzika " << ludzik << endl; //cerr << indent << "Gdyby zaczynal [" << ludzik.indeks + ludzik.delta_min << ":" << ludzik.indeks + ludzik.delta_max << "]>" << endl; //cerr << indent << "Z uwg. na stos [" << stos.back().pocz + ludzik.delta_min << ":" << stos.back().pocz + ludzik.delta_max << "]>" << endl; // Uwzglednij wymagania ludzika stos.back().kon_min = max( stos.back().kon_min, stos.back().pocz + ludzik.delta_min ); stos.back().kon_max = min( stos.back().kon_max, stos.back().pocz + ludzik.delta_max ); //cerr << indent << "Zmodyfikowany stos.back() " << stos.back() << endl; if( (stos.back().kon_min <= 1 + ludzik.indeks ) && (stos.back().kon_max >= 1 + ludzik.indeks ) ) { stos_push = true; } else if ( (stos.back().kon_max < ludzik.indeks ) || (stos.back().kon_min > stos_maksimum ) ) { stos_pop = true; } } else { //cerr << indent << "Koniec ludzikow" << endl; stos_pop = true; } if( stos_push ) { //cerr << indent << "stos_push - KONIEC DRUZYNY " << ludzik.indeks << endl; // podgladam ludzika i uzywam go // do okreslenia kolejnych warunkow if( p.nastepny( ludzik )) { //cerr << indent << "podgladam kolejnego " << ludzik << endl; Stan s( // gdzie zaczyna sie druzyna ludzik.indeks, // gdzie najwczesniej moze sie skonczyc ludzik.indeks + ludzik.delta_min, // gdzie najpozniej musi sie skonczyc ludzik.indeks + ludzik.delta_max ); stos.push_back( s ); } else { //cerr << indent << "nie ma kolejnych - JEST PODZIAL (" << stos.size() << " druzyn)" << endl; zliczenia[stos.size()] += 1; stos_pop = true; } } if( stos_pop ) { //cerr << indent << "stos_unwind" << endl; //cerr << indent << stos << endl; int pocz = stos.back().pocz; stos.pop_back(); if( stos.size() ) { stos.back().kon_min = pocz; p.ustaw( pocz ); } } } pair< int, int > wynik = * zliczenia.rbegin(); return wynik; } int main() { int ile_ludzikow; cin >> ile_ludzikow; ludziki_t ludziki( ile_ludzikow ); for( int i = 0; i < ile_ludzikow; ++i ) { int malo; int duzo; cin >> malo >> duzo; ludziki[i].delta_min = malo; ludziki[i].delta_max = duzo; ludziki[i].indeks = i; } //cerr << "Na boisku" << endl; //cerr << ludziki << endl; Podawacz p( ludziki ); pair< int, int > wynik = ile_druzyn( p ); if( wynik.first == 0 ) { cout << "NIE\n"; } else { cout << wynik.first << " " << wynik.second << endl; } } ostream& operator<< ( ostream& os, Ludzik const& l ) { os << "{" << l.indeks << ": " << l.delta_min << " " << l.delta_max << "}"; return os; } ostream& operator<< ( ostream& os, Stan const& s ) { os << s.pocz << " [" << s.kon_min << " " << s.kon_max << "]>"; return os; } template <typename T> ostream& operator<< ( ostream& os, vector< T > const& v) { for( auto e : v ) { os << e << " "; } return os; } |