# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
405672 | souvenir_vayne | Knjige (COCI20_knjige) | C++14 | 33 ms | 460 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
int32_t main() {
int n;
cin >> n;
long long ans = 0;
for(int i = 0; i < n; i++)
ans += 2 * (n - i) + 2*(n - i - 1);
cout << ans << endl;
stack<int> left, right;
for(int i = 0; i < n; i++) {
int x;
cin >> x;
left.push(x);
}
stack<int> aux;
while(!left.empty()) {
aux.push(left.top());
left.pop();
}
left = aux;
int did = 0;
while(did < n) {
int mn = 0;
aux = left;
while(!aux.empty()) {
mn = max(mn, aux.top());
aux.pop();
}
bool taken = false;
for(int i = 0; i < n - did; i++) {
if(left.top() == mn && !taken) {
taken = true;
cout << "UZMI L L" << endl;
}
else {
cout << "UZMI D L" << endl << "STAVI D D" << endl;
right.push(left.top());
}
left.pop();
}
did++;
cout << "STAVI L L" << endl;
while(!right.empty()) {
cout << "UZMI D D" << endl << "STAVI D L" << endl;
left.push(right.top());
right.pop();
}
}
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |