# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1006564 | UmairAhmadMirza | Knjige (COCI20_knjige) | C++17 | 54 ms | 2512 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define ll long long
int const N=5e5+5;
int const mod=1e9+7;
int main(){
int n;
cin>>n;
stack<int> lst,rst;
for(int i=0;i<n;i++){
int a;
cin>>a;
lst.push(a);
}
vector<string> move;
for(int i=0;i<n;i++){
int rh=-1;
while(lst.size()>0){
if(rh==-1){
//take the book on top of left in your rh
move.push_back("UZMI R L");
rh=lst.top();
lst.pop();
}
else if(rh<lst.top()){
//put rh book on top of right.
move.push_back("STAVI R R");
rst.push(rh);
//take the book from top of left in your rh
move.push_back("UZMI R L");
rh=lst.top();
lst.pop();
}
else{
rst.push(lst.top());
//take the book from top of left in your lh
move.push_back("UZMI L L");
lst.pop();
//put lh book on top of right.
move.push_back("STAVI L R");
}
}
//place book in your rh on top of left
move.push_back("STAVI R L");
lst.push(rh);
while(!rst.empty()){
lst.push(rst.top());
//take book in your lh from top of right
move.push_back("UZMI L R");
rst.pop();
//place book in your lh on top of left.
move.push_back("STAVI L L");
}
}
cout<<move.size()<<endl;
for (string s:move)
cout<<s<<endl;
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |