# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
495515 | oolimry | Knjige (COCI20_knjige) | C++17 | 3 ms | 1484 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include<bits/stdc++.h>
using namespace std;
signed main(){
ios::sync_with_stdio(false);cin.tie(0);
int n; cin >> n;
vector<int> L(n);
vector<int> R;
for(int i = 0;i < n;i++) cin >> L[i];
reverse(L.begin(),L.end());
vector<string> ans;
for(int iter = n;iter >= 2;iter--){
for(int i = 0;i < iter;i++){
if(L.back() == iter){
ans.push_back("UZMI D L\n");
}
else{
ans.push_back("UZMI L L\n");
ans.push_back("STAVI L D\n");
R.push_back(L.back());
}
L.pop_back();
}
ans.push_back("STAVI D L\n");
L.push_back(iter);
while(not R.empty()){
ans.push_back("UZMI L D\n");
ans.push_back("STAVI L L\n");
L.push_back(R.back());
R.pop_back();
}
}
cout << (int) ans.size() << '\n';
for(string s : ans) cout << s;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |