Submission #452049

# Submission time Handle Problem Language Result Execution time Memory
452049 2021-08-03T16:51:31 Z PiejanVDC Knjige (COCI20_knjige) C++17
25 / 50
2 ms 1096 KB
#include <bits/stdc++.h>
using namespace std;

signed main() {
    int n; cin>>n;
    vector<int>sorted(n);
    stack<int>l,r;
    for(int i = 0 ; i < n ; i++) {
        cin>>sorted[i];
    }
    for(int i = n-1 ; i >= 0 ; i--) l.push(sorted[i]);
    vector<string>ans;

    int cnt=0;
    sort(sorted.rbegin(),sorted.rend());
    bool f = true;
    for(int i = 0 ; i < n ; i++) {
        int t = sorted[i];
        if(f) {
            for(int j = 0 ; j < n - i ; j++) {
                if(l.top() != t) r.push(l.top()), ans.push_back("UZMI D L\nSTAVI D D\n"),cnt+=2;
                else ans.push_back("UZMI L L\n"),cnt++;
                l.pop();
            }
            ans.push_back("STAVI L L\n");
            cnt++;
            l.push(t);
            f=false;
        } else {
            while(true) {
                if(r.size() == 1) break;
                if(r.top() == t) break;
                ans.push_back("UZMI D D\nSTAVI D L\n");
                cnt+=2;
                l.push(r.top());
                r.pop();
            }
            ans.push_back("UZMI L D\n");
            cnt++;
            r.pop();
            while(l.size() > i) {
                r.push(l.top());
                l.pop();
                ans.push_back("UZMI D L\nSTAVI D D\n");
                cnt+=2;
            }
            l.push(t);
            ans.push_back("STAVI L L\n");
            cnt++;
        }
    }
    cout << cnt << "\n";
    for(auto z : ans) cout << z;
    return 0;
}

Compilation message

Main.cpp: In function 'int main()':
Main.cpp:41:28: warning: comparison of integer expressions of different signedness: 'std::stack<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
   41 |             while(l.size() > i) {
      |                   ~~~~~~~~~^~~
# Verdict Execution time Memory Grader output
1 Runtime error 2 ms 1096 KB Execution killed with signal 11
2 Runtime error 2 ms 968 KB Execution killed with signal 11
3 Runtime error 2 ms 968 KB Execution killed with signal 11
4 Correct 1 ms 588 KB Output is correct
5 Correct 1 ms 588 KB Output is correct
6 Runtime error 2 ms 968 KB Execution killed with signal 11
7 Runtime error 1 ms 716 KB Execution killed with signal 11
8 Correct 1 ms 712 KB Output is correct
9 Correct 2 ms 712 KB Output is correct
10 Correct 1 ms 588 KB Output is correct