Submission #495515

# Submission time Handle Problem Language Result Execution time Memory
495515 2021-12-19T08:32:01 Z oolimry Knjige (COCI20_knjige) C++17
0 / 50
3 ms 1484 KB
#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
1 Incorrect 2 ms 1484 KB Cannot put a book with empty hand
2 Incorrect 2 ms 1484 KB Cannot put a book with empty hand
3 Incorrect 2 ms 1484 KB Cannot hold multiple books at one hand
4 Incorrect 2 ms 1484 KB Cannot put a book with empty hand
5 Incorrect 2 ms 1484 KB Cannot put a book with empty hand
6 Incorrect 2 ms 1484 KB Cannot put a book with empty hand
7 Incorrect 2 ms 1356 KB Cannot put a book with empty hand
8 Incorrect 2 ms 1484 KB Cannot put a book with empty hand
9 Incorrect 2 ms 1484 KB Cannot put a book with empty hand
10 Incorrect 3 ms 1452 KB Cannot put a book with empty hand