#include <iostream> #include <optional> #include <string> #include <sstream> #include <unordered_map> #include <unordered_set> #include <vector> struct Dobry { char kolor; char kw; int indeks; std::string klucz() { std::stringstream sstr; sstr << kolor << '-' << kw << '-' << std::to_string(indeks); return sstr.str(); } }; std::ostream& operator<< (std::ostream& os, Dobry const& d) { os << d.kw << " " << d.indeks << " " << d.kolor; return os; } using Indeks = std::vector< std::unordered_map< char, int > >; struct Zadanie { int rozm_x; int rozm_y; std::vector< std::vector< char > > plansza; Indeks indeks_kolumn; Indeks indeks_wierszy; std::vector< Dobry > dobre; int dobre_poz = 0; std::unordered_set< std::string > seen; int wymazane = 0; Zadanie(int x, int y) : rozm_x(x), rozm_y(y) { plansza.resize(y); for (auto& wiersz: plansza) { wiersz.resize(x, ' '); } indeks_kolumn.resize(x); indeks_wierszy.resize(y); } void wstaw(int x, int y, char kolor) { plansza[y][x] = kolor; indeks_kolumn[x][kolor] += 1; indeks_wierszy[y][kolor] += 1; } void kolejkuj_kolumne(int k, bool one = false) { if (indeks_kolumn[k].size() == 1) { char kolor = indeks_kolumn[k].begin()->first; dobre.emplace_back(Dobry{ kolor, 'K', k }); zobacz(dobre.back().klucz()); } } void zobacz(std::string const& klucz) { if(! seen.contains(klucz)) { seen.insert(klucz); } } void kolejkuj_wiersz(int w) { if (indeks_wierszy[w].size() == 1) { char kolor = indeks_wierszy[w].begin()->first; dobre.emplace_back(Dobry{ kolor, 'R', w }); std::string const& klucz = dobre.back().klucz(); if(! seen.contains(klucz)) { seen.insert(klucz); } } } void wymaz(Dobry& dobry) { if (dobry.kw == 'K') { wymaz_kolumne(dobry.indeks); } else if (dobry.kw == 'R') { wymaz_wiersz(dobry.indeks); } } void wymaz_kolumne(int k) { for (int y = 0; y < rozm_y; ++y) { char kolor = plansza[y][k]; if (kolor != '-') { plansza[y][k] = '-'; zmniejsz_indeks(indeks_wierszy, 'R', y, kolor); } } } void wymaz_wiersz(int w) { for (int x = 0; x < rozm_x; ++x) { char kolor = plansza[w][x]; if (kolor != '-') { plansza[w][x] = '-'; zmniejsz_indeks(indeks_kolumn, 'K', x, kolor); wymazane += 1; } } } void zmniejsz_indeks(Indeks& idx, char znak, int wspol, char kolor) { idx[wspol][kolor] -= 1; if (idx[wspol][kolor] == 0) { idx[wspol].erase(kolor); if (idx[wspol].size() == 1) { char ostatni = idx[wspol].begin()->first; dobre.push_back(Dobry{ostatni, znak, wspol}); } } } void szukaj() { for (int x = 0; x < rozm_x; ++x) { kolejkuj_kolumne(x); } for (int y = 0; y < rozm_y; ++y) { kolejkuj_wiersz(y); } } std::optional< Dobry > daj_dobry() { if (wymazane == rozm_x * rozm_y) { return std::optional< Dobry >(); } if (dobre.size() == 0) { szukaj(); } if (dobre.size() == dobre_poz) { return std::optional< Dobry >(); } return std::optional< Dobry >{ dobre[dobre_poz++] }; } }; int main() { int size_y; std::cin >> size_y; int size_x; std::cin >> size_x; Zadanie zad(size_x, size_y); for (int y = 0; y < size_y; ++y) { for (int x = 0; x < size_x; ++x) { char kolor; std::cin >> kolor; zad.wstaw(x, y, kolor); } } std::vector< Dobry > odp; while (auto opt_dobry = zad.daj_dobry()) { Dobry dobry = opt_dobry.value(); odp.push_back(dobry); zad.wymaz(dobry); } std::cout << odp.size() << "\n"; for (int i = odp.size() - 1; 0 <= i; --i ) { Dobry& d = odp[i]; std::cout << d.kw << " " << (d.indeks + 1) << " " << d.kolor << "\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 | #include <iostream> #include <optional> #include <string> #include <sstream> #include <unordered_map> #include <unordered_set> #include <vector> struct Dobry { char kolor; char kw; int indeks; std::string klucz() { std::stringstream sstr; sstr << kolor << '-' << kw << '-' << std::to_string(indeks); return sstr.str(); } }; std::ostream& operator<< (std::ostream& os, Dobry const& d) { os << d.kw << " " << d.indeks << " " << d.kolor; return os; } using Indeks = std::vector< std::unordered_map< char, int > >; struct Zadanie { int rozm_x; int rozm_y; std::vector< std::vector< char > > plansza; Indeks indeks_kolumn; Indeks indeks_wierszy; std::vector< Dobry > dobre; int dobre_poz = 0; std::unordered_set< std::string > seen; int wymazane = 0; Zadanie(int x, int y) : rozm_x(x), rozm_y(y) { plansza.resize(y); for (auto& wiersz: plansza) { wiersz.resize(x, ' '); } indeks_kolumn.resize(x); indeks_wierszy.resize(y); } void wstaw(int x, int y, char kolor) { plansza[y][x] = kolor; indeks_kolumn[x][kolor] += 1; indeks_wierszy[y][kolor] += 1; } void kolejkuj_kolumne(int k, bool one = false) { if (indeks_kolumn[k].size() == 1) { char kolor = indeks_kolumn[k].begin()->first; dobre.emplace_back(Dobry{ kolor, 'K', k }); zobacz(dobre.back().klucz()); } } void zobacz(std::string const& klucz) { if(! seen.contains(klucz)) { seen.insert(klucz); } } void kolejkuj_wiersz(int w) { if (indeks_wierszy[w].size() == 1) { char kolor = indeks_wierszy[w].begin()->first; dobre.emplace_back(Dobry{ kolor, 'R', w }); std::string const& klucz = dobre.back().klucz(); if(! seen.contains(klucz)) { seen.insert(klucz); } } } void wymaz(Dobry& dobry) { if (dobry.kw == 'K') { wymaz_kolumne(dobry.indeks); } else if (dobry.kw == 'R') { wymaz_wiersz(dobry.indeks); } } void wymaz_kolumne(int k) { for (int y = 0; y < rozm_y; ++y) { char kolor = plansza[y][k]; if (kolor != '-') { plansza[y][k] = '-'; zmniejsz_indeks(indeks_wierszy, 'R', y, kolor); } } } void wymaz_wiersz(int w) { for (int x = 0; x < rozm_x; ++x) { char kolor = plansza[w][x]; if (kolor != '-') { plansza[w][x] = '-'; zmniejsz_indeks(indeks_kolumn, 'K', x, kolor); wymazane += 1; } } } void zmniejsz_indeks(Indeks& idx, char znak, int wspol, char kolor) { idx[wspol][kolor] -= 1; if (idx[wspol][kolor] == 0) { idx[wspol].erase(kolor); if (idx[wspol].size() == 1) { char ostatni = idx[wspol].begin()->first; dobre.push_back(Dobry{ostatni, znak, wspol}); } } } void szukaj() { for (int x = 0; x < rozm_x; ++x) { kolejkuj_kolumne(x); } for (int y = 0; y < rozm_y; ++y) { kolejkuj_wiersz(y); } } std::optional< Dobry > daj_dobry() { if (wymazane == rozm_x * rozm_y) { return std::optional< Dobry >(); } if (dobre.size() == 0) { szukaj(); } if (dobre.size() == dobre_poz) { return std::optional< Dobry >(); } return std::optional< Dobry >{ dobre[dobre_poz++] }; } }; int main() { int size_y; std::cin >> size_y; int size_x; std::cin >> size_x; Zadanie zad(size_x, size_y); for (int y = 0; y < size_y; ++y) { for (int x = 0; x < size_x; ++x) { char kolor; std::cin >> kolor; zad.wstaw(x, y, kolor); } } std::vector< Dobry > odp; while (auto opt_dobry = zad.daj_dobry()) { Dobry dobry = opt_dobry.value(); odp.push_back(dobry); zad.wymaz(dobry); } std::cout << odp.size() << "\n"; for (int i = odp.size() - 1; 0 <= i; --i ) { Dobry& d = odp[i]; std::cout << d.kw << " " << (d.indeks + 1) << " " << d.kolor << "\n"; } return 0; } |