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
#include<bits/stdc++.h>
using namespace std;
#define ll long long
#define st first
#define nd second
int main()
{
    ios_base::sync_with_stdio(false);cin.tie(0);
    int n,m;
    cin>>n>>m;
    vector<vector<char>>a(n,vector<char>(m));
    for(int i=0;i<n;i++)
    {
        for(int j=0;j<m;j++)
        {
            cin>>a[i][j];
        }
    }
    vector<pair<int,vector<int>>>b(n,{0,vector<int>(26)});
    vector<pair<int,vector<int>>>c(m,{0,vector<int>(26)});
    queue<pair<int,int>>q;
    vector<string>wyn;
    for(int i=0;i<n;i++)
    {
        for(int j=0;j<m;j++)
        {
            b[i].nd[a[i][j]-'A']++;
            if(b[i].nd[a[i][j]-'A']==1)
            {
                b[i].st++;
            }
        }
        if(b[i].st==1)
        {
            q.push({0,i});
        }
    }
    for(int j=0;j<m;j++)
    {
        for(int i=0;i<n;i++)
        {
            c[j].nd[a[i][j]-'A']++;
            if(c[j].nd[a[i][j]-'A']==1)
            {
                c[j].st++;
            }
        }
        if(c[j].st==1)
        {
            q.push({1,j});
        }
    }
    while(q.size()>0)
    {
        int e=q.front().nd;
        
        if(q.front().st==0)
        {
            int o=-1;
            for(int i=0;i<26;i++)
            {
                if(b[e].nd[i]>0)
                {
                    o=i;
                    break;
                }
            }
            if(o!=-1)
            {
                char ooo=o+'A';
                wyn.push_back("R "+to_string(e+1)+" "+ooo);
                for(int i=0;i<m;i++)
                {
                    c[i].nd[o]--;
                    if(c[i].nd[o]==0)
                    {
                        c[i].st--;
                        if(c[i].st==1)
                        {
                            q.push({1,i});
                        }
                    }
                }
            }
        }
        else
        {
            int o=-1;
            for(int i=0;i<26;i++)
            {
                if(c[e].nd[i]>0)
                {
                    o=i;
                    break;
                }
            }
            if(o!=-1)
            {
                char ooo=o+'A';
                wyn.push_back("K "+to_string(e+1)+" "+ooo);
                for(int i=0;i<n;i++)
                {
                    b[i].nd[o]--;
                    if(b[i].nd[o]==0)
                    {
                        b[i].st--;
                        if(b[i].st==1)
                        {
                            q.push({0,i});
                        }
                    }
                }
            }
        }
        q.pop();
    }
    cout<<wyn.size()<<endl;
    for(int i=wyn.size()-1;i>=0;i--)
    {
        cout<<wyn[i]<<endl;
    }
}