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
151
152
153
154
155
156
157
158
159
160
161
162
//Autor: Mateusz Wasylkiewicz
//Zawody: Potyczki Algorytmiczne 2018
//Strona: http://potyczki.mimuw.edu.pl/
//Zadanie: Gra, runda 5B
//Czas: O(T*n^2*(MAX_LICZBA+1))
#include <bits/stdc++.h>
using namespace std;

#define FOR(x, a, b) for (int x = (a); x <= (b); x++)
#define FORD(x, a, b) for (int x = (a); x >= (b); x--)
#define REP(x, n) for (int x = 0; x < (n); x++)
#define SIZE(x) int((x).size())
#define PB push_back

struct Ruch
{
	int kup, r1, c1, r2, c2;
	
	Ruch(int k) : kup(k) {}
	
	Ruch(int x1, int y1, int x2, int y2) : kup(-1), r1(x1), c1(y1), r2(x2), c2(y2) {}
	
	friend ostream& operator << (ostream& wyjscie, const Ruch& dane)
	{
		if (dane.kup == 0)
			cout << "R FARMER";
		else if (dane.kup == 1)
			cout << "R TANK";
		else
			cout << "M " << dane.r1 << ' ' << dane.c1 << ' ' << dane.r2 << ' ' << dane.c2;
		return wyjscie;
	}
};

const int MAX_N = 20, MAX_LICZBA_TUR = 10100;
int n, liczba_tur, pole[MAX_N][MAX_N];
vector<Ruch> ruchy[MAX_LICZBA_TUR];

void wczytaj_dane()
{
	cin >> n;
	assert(n >= 2);
	REP(i, n)
		REP(j, n)
			cin >> pole[i][j];
}

void wyczysc_wszystko()
{
	liczba_tur = 0;
	REP(t, MAX_LICZBA_TUR)
		ruchy[t].clear();
}

void kup_farmera(int t)
{
	ruchy[t].PB(Ruch(0));
	liczba_tur = max(liczba_tur, t + 1);
}

void przesun(int t, int x1, int y1, int x2, int y2)
{
	ruchy[t].PB(Ruch(x1, y1, x2, y2));
	liczba_tur = max(liczba_tur, t + 1);
}

inline int tury_do_zebrania(int zl)
{
	return max(0, zl % 10 == 0 ? zl / 10 - 1 : zl / 10);
}

inline int suma_wiersza(int x)
{
	int suma = 0;
	REP(y, n)
		suma += pole[x][y];
	return suma;
}

void zbierz_wiersz(int t, int r)
{
	kup_farmera(t);
	REP(x, r)
		przesun(t++, x, 0, x + 1, 0);
	FOR(y, 0, n - 2)
	{
		t += tury_do_zebrania(pole[r][y]);
		przesun(t++, r, y, r, y + 1);
	}
	t += tury_do_zebrania(pole[r][n - 1]);
	FORD(y, n - 1, 1)
		przesun(t++, r, y, r, y - 1);
}

void oddaj_wiersz(int t, int r)
{
	FORD(x, r, 1)
		przesun(t++, x, 0, x - 1, 0);
	REP(y, n - 1 - r)
		przesun(t++, 0, y, 0, y + 1);
}

void wypisz_wynik()
{
	REP(t, liczba_tur)
	{
		REP(i, SIZE(ruchy[t]))
			cout << ruchy[t][i] << '\n';
		cout << "=\n";
	}
	cout << "===\n";
}

int zbierz_i_oddaj_wiersze(int t, int pocz, int kon)
{
	FORD(r, kon, pocz)
		zbierz_wiersz(t + kon - r, r);
	t = liczba_tur;
	FOR(r, pocz, kon)
		oddaj_wiersz(t, r);
	return t;
}

bool nie_ma_skal()
{
	REP(i, n)
		REP(j, n)
			if (pole[i][j] < 0)
				return false;
	return true;
}

void rozwiaz_brak_skal()
{
	assert(suma_wiersza(0) + suma_wiersza(1) >= (n - 2) * 100);
	
	int t = zbierz_i_oddaj_wiersze(0, 0, 1);
	zbierz_i_oddaj_wiersze(t + 1, 2, n - 1);
	
}

void zrob_test()
{
	wczytaj_dane();
	wyczysc_wszystko();
	if (nie_ma_skal())
		rozwiaz_brak_skal();
	else
		assert(false);
	wypisz_wynik();
}

int main()
{
	ios_base::sync_with_stdio(false);
	cin.tie(NULL);
	int T, k;
	cin >> T >> k;
	while (T--)
		zrob_test();
	return 0;
}