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
#include <bits/stdc++.h>
#define LL long long
#define endl '\n'
using namespace std;
vector<vector<int>>tab;
vector<map<int,int>>kol,wier;
vector<bool>kolu,wieru;
vector<pair<int,int>>wyn;
int main()
{
    std::ios_base::sync_with_stdio(0);
    cout.tie(0);
    cin.tie(0);
    int n,m;
    cin>>n>>m;
    tab.resize(n,vector<int>(m));
    kol.resize(m);
    kolu.resize(m);
    wier.resize(n);
    wieru.resize(n);
    for(int i=0;i<n;i++) for(int j=0;j<m;j++) 
    {
        char xd;
        cin>>xd;
       // cin>>tab[i][j];
        tab[i][j]=xd-65;
        wier[i][tab[i][j]]++;
        kol[j][tab[i][j]]++;
    }
    int nn=n,mm=m;
    while(nn>0&&mm>0)
    {
        if(nn>0) for(int i=0;i<n;i++)
        {
            if(wier[i].size()!=1||wieru[i]) continue;
            wieru[i]=1;
            nn--;
            auto a=wier[i].begin();
            wyn.push_back({i,(*a).first});
            for(int j=0;j<m;j++) 
            {
                kol[j][(*a).first]--;
                if(!kol[j][(*a).first]) kol[j].erase((*a).first);
            }
        }
        if(mm>0) for(int i=0;i<m;i++)
        {
            if(kol[i].size()!=1||kolu[i]) continue;
            kolu[i]=1;
            mm--;
            auto a=kol[i].begin();
            wyn.push_back({i+2000,(*a).first});
            for(int j=0;j<n;j++) 
            {
                wier[j][(*a).first]--;
                if(!wier[j][(*a).first]) wier[j].erase((*a).first);
            }
        }
    }
    cout<<wyn.size()<<endl;
    for(int i=wyn.size()-1;i>=0;i--) wyn[i].first>=2000?cout<<"K "<<wyn[i].first-1999<<" "<<(char)(wyn[i].second+65)<<endl:cout<<"R "<<wyn[i].first+1<<" "<<(char)(wyn[i].second+65)<<endl;
}