#include <cstdio> #include <cmath> #include <iostream> #include <algorithm> #include <queue> #include <list> #include <vector> #include <map> #include <unordered_map> #include <set> #include <stack> #include <string> #include <cstring> #include <cassert> #include <limits.h> using namespace std; typedef long long LL; typedef long double LD; typedef vector<int> VI; #define REP(i,n) for(int i=0;i<(n);i++) #define FOR(i,a,b) for(VAR(i,a);i<=(b);++i) #define FORD(i,a,b) for(VAR(i,a);i>=(b);--i) #define FORE(a,b) for(VAR(a,(b).begin());a!=(b).end();++a) #define VAR(a,b) __typeof(b) a=(b) #define SIZE(a) ((int)((a).size())) #define ALL(x) (x).begin(),(x).end() #define CLR(x,a) memset(x,a,sizeof(x)) #define ZERO(x) memset(x,0,sizeof(x)) #define S(t,i) scanf("%" ## t, &i) #define SI(i) scanf("%d", &i) const int MAXN=2000+5; const LL P=31; const LL M=(1000*1000*1000)+9; //const LL M=999999733; LL pp[MAXN]; LL ppsk, ppsw; int n, m, k; char c[MAXN][MAXN]; list<int> indeksy_wierszy; list<int> indeksy_kolumn; LL hashe_wierszy[MAXN]; LL hashe_kolumn[MAXN]; bool vis_kol[MAXN]; bool vis_row[MAXN]; vector<list<int>::iterator> kolumny_do_usuniecia; vector<list<int>::iterator> wiersze_do_usuniecia; list<pair<char, pair<int, char> > > result; void try_del_row(list<int>::iterator iw) { if (vis_row[*iw] || indeksy_kolumn.empty()) { return; } int first_column_i = indeksy_kolumn.front(); char znak = c[*iw][first_column_i]; LL hash_stalego_wiersza = ((znak - 'A' + 1)*ppsw) % M; if (hashe_wierszy[*iw] == hash_stalego_wiersza) { ppsk = (ppsk - pp[*iw] + M) % M; FORE(ik, indeksy_kolumn) { // assert(znak==c[*iw][*ik]); hashe_kolumn[*ik] = (hashe_kolumn[*ik] - pp[(*iw)]*(znak - 'A' + 1)%M + M)%M; } result.push_front(make_pair('R', make_pair(*iw, znak))); wiersze_do_usuniecia.push_back(iw); vis_row[*iw] = true; //printf("R %d %d %lld\n", *iw, znak-'A'+1, ppsk); } } void try_del_col(list<int>::iterator ik) { if (vis_kol[*ik] || indeksy_wierszy.empty()) { return; } int first_row_i = indeksy_wierszy.front(); char znak = c[first_row_i][*ik]; LL hash_stalej_kolumny = ((znak - 'A' + 1)*ppsk) % M; if (hashe_kolumn[*ik] == hash_stalej_kolumny) { ppsw = (ppsw - pp[(*ik)] + M) % M; FORE(iw, indeksy_wierszy) { // assert(znak==c[*iw][*ik]); hashe_wierszy[*iw] = (hashe_wierszy[*iw] - pp[*ik]*(znak - 'A' + 1)%M + M)%M; } result.push_front(make_pair('K', make_pair(*ik, znak))); kolumny_do_usuniecia.push_back(ik); vis_kol[*ik] = true; //printf("K %d %d %lld\n", *ik, znak-'A'+1, ppsw); } } void del_rows() { FORE(it, wiersze_do_usuniecia) { indeksy_wierszy.erase(*it); } wiersze_do_usuniecia.clear(); FORE(ik, indeksy_kolumn) { try_del_col(ik); } } void del_cols() { FORE(it, kolumny_do_usuniecia) { indeksy_kolumn.erase(*it); } kolumny_do_usuniecia.clear(); FORE(iw, indeksy_wierszy) { try_del_row(iw); } } void solve() { while (indeksy_kolumn.size() > 0 && indeksy_wierszy.size() > 0) { del_rows(); del_cols(); } } int main() { ios_base::sync_with_stdio(0); pp[1]=1; FOR(i, 2, MAXN-1) { pp[i] = (pp[i-1]*P) % M; } SI(n); SI(m); FOR(i, 1, n) { ppsk = (ppsk + pp[i]) % M; indeksy_wierszy.push_back(i); } FOR(i, 1, m) { ppsw = (ppsw + pp[i]) % M; indeksy_kolumn.push_back(i); } FOR(ni, 1, n) { scanf(" "); FOR(mi, 1, m) { scanf("%c", &c[ni][mi]); } } FOR(ni, 1, n) { FOR(mi, 1, m) { hashe_wierszy[ni] = (hashe_wierszy[ni] + (((c[ni][mi]-'A'+1) * pp[mi]) % M)) % M; hashe_kolumn[mi] = (hashe_kolumn[mi] + (((c[ni][mi]-'A'+1) * pp[ni]) % M)) % M; } } solve(); printf("%d\n", (int)result.size()); FORE(ri, result) { printf("%c %d %c\n", ri->first, ri->second.first, ri->second.second); } 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 | #include <cstdio> #include <cmath> #include <iostream> #include <algorithm> #include <queue> #include <list> #include <vector> #include <map> #include <unordered_map> #include <set> #include <stack> #include <string> #include <cstring> #include <cassert> #include <limits.h> using namespace std; typedef long long LL; typedef long double LD; typedef vector<int> VI; #define REP(i,n) for(int i=0;i<(n);i++) #define FOR(i,a,b) for(VAR(i,a);i<=(b);++i) #define FORD(i,a,b) for(VAR(i,a);i>=(b);--i) #define FORE(a,b) for(VAR(a,(b).begin());a!=(b).end();++a) #define VAR(a,b) __typeof(b) a=(b) #define SIZE(a) ((int)((a).size())) #define ALL(x) (x).begin(),(x).end() #define CLR(x,a) memset(x,a,sizeof(x)) #define ZERO(x) memset(x,0,sizeof(x)) #define S(t,i) scanf("%" ## t, &i) #define SI(i) scanf("%d", &i) const int MAXN=2000+5; const LL P=31; const LL M=(1000*1000*1000)+9; //const LL M=999999733; LL pp[MAXN]; LL ppsk, ppsw; int n, m, k; char c[MAXN][MAXN]; list<int> indeksy_wierszy; list<int> indeksy_kolumn; LL hashe_wierszy[MAXN]; LL hashe_kolumn[MAXN]; bool vis_kol[MAXN]; bool vis_row[MAXN]; vector<list<int>::iterator> kolumny_do_usuniecia; vector<list<int>::iterator> wiersze_do_usuniecia; list<pair<char, pair<int, char> > > result; void try_del_row(list<int>::iterator iw) { if (vis_row[*iw] || indeksy_kolumn.empty()) { return; } int first_column_i = indeksy_kolumn.front(); char znak = c[*iw][first_column_i]; LL hash_stalego_wiersza = ((znak - 'A' + 1)*ppsw) % M; if (hashe_wierszy[*iw] == hash_stalego_wiersza) { ppsk = (ppsk - pp[*iw] + M) % M; FORE(ik, indeksy_kolumn) { // assert(znak==c[*iw][*ik]); hashe_kolumn[*ik] = (hashe_kolumn[*ik] - pp[(*iw)]*(znak - 'A' + 1)%M + M)%M; } result.push_front(make_pair('R', make_pair(*iw, znak))); wiersze_do_usuniecia.push_back(iw); vis_row[*iw] = true; //printf("R %d %d %lld\n", *iw, znak-'A'+1, ppsk); } } void try_del_col(list<int>::iterator ik) { if (vis_kol[*ik] || indeksy_wierszy.empty()) { return; } int first_row_i = indeksy_wierszy.front(); char znak = c[first_row_i][*ik]; LL hash_stalej_kolumny = ((znak - 'A' + 1)*ppsk) % M; if (hashe_kolumn[*ik] == hash_stalej_kolumny) { ppsw = (ppsw - pp[(*ik)] + M) % M; FORE(iw, indeksy_wierszy) { // assert(znak==c[*iw][*ik]); hashe_wierszy[*iw] = (hashe_wierszy[*iw] - pp[*ik]*(znak - 'A' + 1)%M + M)%M; } result.push_front(make_pair('K', make_pair(*ik, znak))); kolumny_do_usuniecia.push_back(ik); vis_kol[*ik] = true; //printf("K %d %d %lld\n", *ik, znak-'A'+1, ppsw); } } void del_rows() { FORE(it, wiersze_do_usuniecia) { indeksy_wierszy.erase(*it); } wiersze_do_usuniecia.clear(); FORE(ik, indeksy_kolumn) { try_del_col(ik); } } void del_cols() { FORE(it, kolumny_do_usuniecia) { indeksy_kolumn.erase(*it); } kolumny_do_usuniecia.clear(); FORE(iw, indeksy_wierszy) { try_del_row(iw); } } void solve() { while (indeksy_kolumn.size() > 0 && indeksy_wierszy.size() > 0) { del_rows(); del_cols(); } } int main() { ios_base::sync_with_stdio(0); pp[1]=1; FOR(i, 2, MAXN-1) { pp[i] = (pp[i-1]*P) % M; } SI(n); SI(m); FOR(i, 1, n) { ppsk = (ppsk + pp[i]) % M; indeksy_wierszy.push_back(i); } FOR(i, 1, m) { ppsw = (ppsw + pp[i]) % M; indeksy_kolumn.push_back(i); } FOR(ni, 1, n) { scanf(" "); FOR(mi, 1, m) { scanf("%c", &c[ni][mi]); } } FOR(ni, 1, n) { FOR(mi, 1, m) { hashe_wierszy[ni] = (hashe_wierszy[ni] + (((c[ni][mi]-'A'+1) * pp[mi]) % M)) % M; hashe_kolumn[mi] = (hashe_kolumn[mi] + (((c[ni][mi]-'A'+1) * pp[ni]) % M)) % M; } } solve(); printf("%d\n", (int)result.size()); FORE(ri, result) { printf("%c %d %c\n", ri->first, ri->second.first, ri->second.second); } return 0; } |