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
#include <iostream>
#include <vector>
#include <queue>

struct xd{
    short int cnt[26];
    bool ok(){
        int res=0;
        for (size_t i=0; i<26; ++i) if (cnt[i]) ++res;
        return res<=1;
    }
    int sum(){
        int res=0;
        for (size_t i=0; i<26; ++i) res+=cnt[i];
        return res;
    }
    char color(){
        for (size_t i=0; i<26; ++i) if (cnt[i])return 'A'+i;
        return 'A';
    }
    xd(){
        for (int i=0; i<26; ++i)cnt[i]=0;
    }
};

int main(){
    std::ios_base::sync_with_stdio(false);
    std::cin.tie(0);
    int n, m;
    std::cin>>n>>m;
    char t[n][m];
    xd t1[n], t2[m];
    for (int i=0; i<n; ++i){
        for (int j=0; j<m; ++j){
            std::cin>>t[i][j];
            ++t1[i].cnt[t[i][j]-'A'];
            ++t2[j].cnt[t[i][j]-'A'];
        }
    }
    bool d1[n], d2[m];
    std::queue<std::pair<int,bool> > Q;
    for (size_t i=0; i<n; ++i){
        d1[i]=false;
        if (t1[i].ok()){
            d1[i]=true;
            Q.emplace(i,true);
        }
    }
    for (size_t i=0; i<m; ++i){
        d2[i]=false;
        if (t2[i].ok()){
            d2[i]=true;
            Q.emplace(i,false);
        }
    }
    std::vector<std::pair<char,std::pair<int,char> > >res;
    while (!Q.empty()){
        auto s=Q.front();
        Q.pop();
        if (s.second){
            for (size_t j=0; j<m; ++j){
                if (!d2[j]){
                    --t2[j].cnt[t[s.first][j]-'A'];
                    if (t2[j].ok()){
                        d2[j]=true;
                        Q.emplace(j,false);
                    }
                }
            }
            res.emplace_back('R',std::make_pair(s.first+1,t1[s.first].color()));
        }else{
            for (size_t j=0; j<n; ++j){
                if (!d1[j]){
                    --t1[j].cnt[t[j][s.first]-'A'];
                    if (t1[j].ok()){
                        d1[j]=true;
                        Q.emplace(j,true);
                    }
                }
            }
            res.emplace_back('K',std::make_pair(s.first+1,t2[s.first].color()));
        }
    }
    std::cout<<res.size()<<'\n';
    for (int i=res.size()-1; i>=0; --i){
        std::cout<<res[i].first<<' '<<res[i].second.first<<' '<<res[i].second.second<<'\n';
    }
}