//2024-03-14 //author: Marcin Rolbiecki #include <bits/stdc++.h> using namespace std; const int maxN = 2002, alfa = 26; int columns [maxN][26], rows[maxN][26]; int columnsCnt [maxN], rowsCnt[maxN]; int totalCnt; char grid [maxN][maxN]; vector <string> ans; int n, m; int checkColumn (int j) { int id = 0, cnt = 0; for (int a = 0; a < alfa; a++) { if (columns[j][a]) { id = a; cnt++; } } return (cnt == 1 ? id : -1); } int checkRow (int i) { int id = 0, cnt = 0; for (int a = 0; a < alfa; a++) { if (rows[i][a]) { id = a; cnt++; } } return (cnt == 1 ? id : -1); } void update (int i, int j) { if (grid[i][j]) { rows[i][ grid[i][j] - 'A' ]--; if (rows[i][ grid[i][j] - 'A' ] == 0) { rowsCnt[i]--; if (rowsCnt[i] == 0) { totalCnt--; } } columns[j][ grid[i][j] - 'A' ]--; if (columns[j][ grid[i][j] - 'A' ] == 0) { columnsCnt[j]--; if (columnsCnt[j] == 0) { totalCnt--; } } grid[i][j] = 0; } } /* void printGrid () { for (int i = 1; i <= n; i++) { for (int j = 1; j <= m; j++) { cout << (grid[i][j] ? grid[i][j] : '#'); } cout << endl; } } */ int main () { ios_base::sync_with_stdio(0); cin.tie(0); cin >> n >> m; for (int i = 1; i <= n; i++) { for (int j = 1; j <= m; j++) { cin >> grid[i][j]; rows[i][ grid[i][j] - 'A' ]++; columns[j][ grid[i][j] - 'A' ]++; } } for (int i = 1; i <= n; i++) { for (int a = 0; a < alfa; a++) { rowsCnt[i] += (rows[i][a] != 0); } totalCnt += (rowsCnt[i] != 0); } for (int j = 1; j <= m; j++) { for (int a = 0; a < alfa; a++) { columnsCnt[j] += (columns[j][a] != 0); } totalCnt += (columnsCnt[j] != 0); } while (totalCnt) { for (int i = 1; i <= n; i++) { int id = checkRow(i); if (id != -1) { for (int j = 1; j <= m; j++) { update(i, j); } ans.push_back("R " + to_string(i) + " " + (char)('A' + id)); } } for (int j = 1; j <= m; j++) { int id = checkColumn(j); if (id != -1) { for (int i = 1; i <= n; i++) { update(i, j); } ans.push_back("K " + to_string(j) + " " + (char)('A' + id)); } } } reverse(ans.begin(), ans.end()); cout << ans.size() << '\n'; for (auto a : ans) { cout << a << '\n'; } return 0; }
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 | //2024-03-14 //author: Marcin Rolbiecki #include <bits/stdc++.h> using namespace std; const int maxN = 2002, alfa = 26; int columns [maxN][26], rows[maxN][26]; int columnsCnt [maxN], rowsCnt[maxN]; int totalCnt; char grid [maxN][maxN]; vector <string> ans; int n, m; int checkColumn (int j) { int id = 0, cnt = 0; for (int a = 0; a < alfa; a++) { if (columns[j][a]) { id = a; cnt++; } } return (cnt == 1 ? id : -1); } int checkRow (int i) { int id = 0, cnt = 0; for (int a = 0; a < alfa; a++) { if (rows[i][a]) { id = a; cnt++; } } return (cnt == 1 ? id : -1); } void update (int i, int j) { if (grid[i][j]) { rows[i][ grid[i][j] - 'A' ]--; if (rows[i][ grid[i][j] - 'A' ] == 0) { rowsCnt[i]--; if (rowsCnt[i] == 0) { totalCnt--; } } columns[j][ grid[i][j] - 'A' ]--; if (columns[j][ grid[i][j] - 'A' ] == 0) { columnsCnt[j]--; if (columnsCnt[j] == 0) { totalCnt--; } } grid[i][j] = 0; } } /* void printGrid () { for (int i = 1; i <= n; i++) { for (int j = 1; j <= m; j++) { cout << (grid[i][j] ? grid[i][j] : '#'); } cout << endl; } } */ int main () { ios_base::sync_with_stdio(0); cin.tie(0); cin >> n >> m; for (int i = 1; i <= n; i++) { for (int j = 1; j <= m; j++) { cin >> grid[i][j]; rows[i][ grid[i][j] - 'A' ]++; columns[j][ grid[i][j] - 'A' ]++; } } for (int i = 1; i <= n; i++) { for (int a = 0; a < alfa; a++) { rowsCnt[i] += (rows[i][a] != 0); } totalCnt += (rowsCnt[i] != 0); } for (int j = 1; j <= m; j++) { for (int a = 0; a < alfa; a++) { columnsCnt[j] += (columns[j][a] != 0); } totalCnt += (columnsCnt[j] != 0); } while (totalCnt) { for (int i = 1; i <= n; i++) { int id = checkRow(i); if (id != -1) { for (int j = 1; j <= m; j++) { update(i, j); } ans.push_back("R " + to_string(i) + " " + (char)('A' + id)); } } for (int j = 1; j <= m; j++) { int id = checkColumn(j); if (id != -1) { for (int i = 1; i <= n; i++) { update(i, j); } ans.push_back("K " + to_string(j) + " " + (char)('A' + id)); } } } reverse(ans.begin(), ans.end()); cout << ans.size() << '\n'; for (auto a : ans) { cout << a << '\n'; } return 0; } |