Submission #487416

#TimeUsernameProblemLanguageResultExecution timeMemory
487416NimbostratusKnjige (COCI20_knjige)C++17
0 / 50
3 ms1484 KiB
#include "bits/stdc++.h"
using namespace std;
#define endl '\n'
using lint = long long;
using pii = pair<int,int>;
constexpr int maxn = 2e5+5;
constexpr int inf = 2e9;
constexpr int mod = 1e9+7;

int n, a[maxn];
vector<string> v;

signed main() {
	ios_base::sync_with_stdio(false);
	cin.tie(nullptr);
	cin >> n;
	for(int i = 0; i < n; i++)
		cin >> a[i];
	do {
		int mx = max_element(a, a + n) - a;
		for(int i = 0; i < mx; i++) {
			v.push_back("UZMI L L");
			v.push_back("STAVI L R");
		}
		v.push_back("UZMI R L");
		for(int i = mx + 1; i < n; i++) {
			v.push_back("UZMI L L");
			v.push_back("STAVI L R");
		}
		v.push_back("STAVI R L");
		for(int i = 0; i < n - 1; i++) {
			v.push_back("UZMI L R");
			v.push_back("STAVI L L");
		}
		for(int i = mx + 1; i < n; i++)
			swap(a[i - 1], a[i]);
	} while(--n);
	cout << v.size() << endl;
	for(auto& s : v)
		cout << s << endl;
}
#Verdict Execution timeMemoryGrader output
Fetching results...