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
#include <bits/stdc++.h>

using namespace std;

int h, w, zrobione;
char c;
map<char, int> wWierszach[2000];
map<char, int> wKolumnach[2000];
stack<pair<char, pair<int, char>>> doWypisania;

int main()
{
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);

    cin >> h >> w;
    for (int y = 0; y < h; y++)
    {
        for (int x = 0; x < w; x++)
        {
            cin >> c;
            auto it = wWierszach[y].find(c);
            if (it == wWierszach[y].end()) wWierszach[y][c] = 1;
            else it->second++;
            it = wKolumnach[x].find(c);
            if (it == wKolumnach[x].end()) wKolumnach[x][c] = 1;
            else it->second++;
        }
    }

    /*for (int y = 0; y < h; y++)
    {
        cout << y << ' ';
        for (auto it : wWierszach[y])
            cout << it.first << ' ' << it.second << ' ';
        cout << '\n';
    }
    for (int x = 0; x < w; x++)
    {
        cout << x << ' ';
        for (auto it : wKolumnach[x])
            cout << it.first << ' ' << it.second << ' ';
        cout << '\n';
    }*/

    while (zrobione < h + w)
    {
        zrobione = 0;
        for (int y = 0; y < h; y++)
        {
            //cout << wWierszach[y].size() << ' ';
            if (wWierszach[y].size() == 0) zrobione++;
            else if (wWierszach[y].size() == 1)
            {
                zrobione++;
                c = wWierszach[y].begin()->first;
                wWierszach[y].clear();
                doWypisania.push({ 'R', { y + 1, c } });
                for (int x = 0; x < w; x++)
                {
                    auto it = wKolumnach[x].find(c);
                    if (it == wKolumnach[x].end()) continue;
                    if (it->second == 1) wKolumnach[x].erase(c);
                    else it->second--;
                }
            }
        }
        for (int x = 0; x < w; x++)
        {
            //cout << wKolumnach[x].size() << ' ';
            if (wKolumnach[x].size() == 0) zrobione++;
            else if (wKolumnach[x].size() == 1)
            {
                zrobione++;
                c = wKolumnach[x].begin()->first;
                wKolumnach[x].clear();
                doWypisania.push({ 'K', { x + 1, c } });
                for (int y = 0; y < h; y++)
                {
                    auto it = wWierszach[y].find(c);
                    if (it == wWierszach[y].end()) continue;
                    if (it->second == 1) wWierszach[y].erase(c);
                    else it->second--;
                }
            }
        }
        /*cout << zrobione << ' ';
        for (int y = 0; y < h; y++)
        {
            cout << y << ' ';
            for (auto it : wWierszach[y])
                cout << it.first << ' ' << it.second << ' ';
            cout << '\n';
        }
        for (int x = 0; x < w; x++)
        {
            cout << x << ' ';
            for (auto it : wKolumnach[x])
                cout << it.first << ' ' << it.second << ' ';
            cout << '\n';
        }*/
    }

    cout << doWypisania.size() << '\n';
    while (!doWypisania.empty())
    {
        auto wypisz = doWypisania.top();
        doWypisania.pop();
        cout << wypisz.first << ' ' << wypisz.second.first << ' ' << wypisz.second.second << '\n';
    }

    return 0;
}