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
// Author   : Jakub Rożek
// Task     : Łamigłówka 3
// Contest  : PA 2024 r4 C
// Memory   : O(n^2)
// Time     : O(n^2*A)
// Solution : Rozwiązanie wystarczające, można lepiej

#include "bits/stdc++.h"
using namespace std;
using LL = long long;
template <typename T>
using P = pair<T, T>;
template <typename T>
using VV = vector<vector<T>>;
#define all(x) x.begin(), x.end()
#define FOR(i,a,b) for(int i=(a); i<=(b); ++i)
#define FORD(i,a,b) for(int i=(a); i>=(b); --i)
#define REP(i,n) for(int i=0; i<(n); ++i)
#define ssize(x) int((x).size())
#ifdef DEBUG
template <typename T1, typename T2>
auto&operator<<(auto&o,pair<T1,T2>p){return o<<'('<<p.first<<", "<<p.second<<")";}
auto operator<<(auto&o,auto x)->decltype(x.end(),o){o<<"{";for(auto e:x)o<<","<<e;return o<<"}";}
#define debug(x...) cerr<<"["#x"]: ",[](auto...$){((cerr<<$<<"; "),...)<<endl;}(x)
#else
#define debug(...) {}
#endif

// const int INF = 1'000'000'009;
// const int mod = 1'000'000'007;
const int N = 2'000;
const int A = 30;

struct ruch{
    char z;
    int nr;
    char a;

    void ustaw(int _z, int _nr, int _a) {
        if (_z == 0) z = 'R';
        else z = 'K';
        nr = _nr+1;
        a = char('A' + _a);
    }

    void wypisz() {
        cout << z << ' ' << nr << ' ' << a << '\n';
    }

};

int n, m, x, y;
string plansza[N];
queue <P<int>> kolejka;
stack <ruch> odp;
int alfabet[2][N][A];
int ile[2][N];
set <P<int>> zbior;

void solution() {
    cin >> n >> m;
    REP (i, n) {
        cin >> plansza[i];
    }

    REP (i, n) {
        REP (j, m) {
            x = plansza[i][j] - 'A';
            if (alfabet[0][i][x] == 0) ++ile[0][i];
            ++alfabet[0][i][x];
            if (alfabet[1][j][x] == 0) ++ile[1][j];
            ++alfabet[1][j][x];
        }
    }

    REP (i, n) {
        if (ile[0][i] == 1) {
            zbior.insert({0,i});
            kolejka.push({0,i});
            REP (l, A) {
                if (alfabet[0][i][l]) {
                    odp.push({});
                    odp.top().ustaw(0,i,l);
                    break;
                }
            }
        }
    }
    REP (j, m) {
        if (ile[1][j] == 1) {
            zbior.insert({1,j});
            kolejka.push({1,j});
            REP (l, A) {
                if (alfabet[1][j][l]) {
                    odp.push({});
                    odp.top().ustaw(1,j,l);
                    break;
                }
            }
        }
    }

    while (!kolejka.empty()) {
        y = kolejka.front().second;
        if (kolejka.front().first == 0) {
            REP (j, m) {
                x = plansza[y][j] - 'A';
                --alfabet[1][j][x];
                if (alfabet[1][j][x] == 0) --ile[1][j];
                if (ile[1][j] == 1 && zbior.count({1,j})==0) {
                    zbior.insert({1,j});
                    kolejka.push({1,j});
                    REP (l, A) {
                    if (alfabet[1][j][l]) {
                        odp.push({});
                        odp.top().ustaw(1,j,l);
                        break;
                    }
                }
                }
            }
        } else {
            REP (i, n) {
                x = plansza[i][y] - 'A';
                --alfabet[0][i][x];
                if (alfabet[0][i][x] == 0) --ile[0][i];
                if (ile[0][i] == 1&& zbior.count({0,i})==0) {
                    zbior.insert({0,i});
                    kolejka.push({0,i});
                    REP (l, A) {
                    if (alfabet[0][i][l]) {
                        odp.push({});
                        odp.top().ustaw(0,i,l);
                        break;
                    }
                }
                }
            }
        }
        kolejka.pop();
    }

    cout << odp.size() << '\n';
    while (!odp.empty()) {
        odp.top().wypisz();
        odp.pop();
    }
}

int main() {
    cin.tie(0)->sync_with_stdio(0);
    int tests = 1;
    // cin>>tests;
    FOR (i, 1, tests) {
        solution();
    }
    return 0;
}