# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
495515 | oolimry | Knjige (COCI20_knjige) | C++17 | 3 ms | 1484 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#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... |