Submission #1006434

# Submission time Handle Problem Language Result Execution time Memory
1006434 2024-06-24T02:19:54 Z vjudge1 Knjige (COCI20_knjige) C++17
0 / 50
61 ms 4052 KB
#include <bits/stdc++.h>
using namespace std;

int main(){
    int n;
    cin >> n;

    int a[n], d[n];
    for (int i = 0; i < n; i ++)
        cin >> d[i], a[i] = d[i];
    sort(a, a + n);

    int cur = n - 1;
    int done = 0;
    vector<pair<string, pair<char, char>>> vec;
    while (cur >= 0){
        int placed = 0;
        vector<int> tmp;
        for (int i = 0; i < n - done; i ++){
            if (d[i] == cur){
                vec.push_back({"UZMI", {'L', 'L'}});
            }
            else{
                vec.push_back({"UZMI", {'R', 'L'}});
                vec.push_back({"STAVI", {'R', 'R'}});
                tmp.push_back(d[i]);
                placed++;
            }
        }
        vec.push_back({"STAVI", {'L', 'L'}});

        while (placed){
            placed--;
            vec.push_back({"UZMI", {'R', 'R'}});
            vec.push_back({"STAVI", {'R', 'L'}});
        }

        d[cur] = a[cur];
        for (int i = 0; i < cur; i ++)
            d[i] = tmp[i];

        cur--;
    }

    cout << vec.size() << endl;
    for (auto [s, P] : vec){
        auto [x, y] = P;
        cout << s << " " << x << " " << y << endl;
    }
}
# Verdict Execution time Memory Grader output
1 Incorrect 44 ms 3028 KB Token "R" doesn't correspond to pattern "(L|D)"
2 Incorrect 44 ms 3028 KB Token "R" doesn't correspond to pattern "(L|D)"
3 Incorrect 44 ms 3028 KB Token "R" doesn't correspond to pattern "(L|D)"
4 Incorrect 49 ms 3796 KB Token "R" doesn't correspond to pattern "(L|D)"
5 Incorrect 44 ms 4052 KB Token "R" doesn't correspond to pattern "(L|D)"
6 Incorrect 61 ms 4052 KB Token "R" doesn't correspond to pattern "(L|D)"
7 Incorrect 44 ms 3028 KB Token "R" doesn't correspond to pattern "(L|D)"
8 Incorrect 55 ms 3028 KB Token "R" doesn't correspond to pattern "(L|D)"
9 Incorrect 44 ms 3028 KB Token "R" doesn't correspond to pattern "(L|D)"
10 Incorrect 44 ms 3028 KB Token "R" doesn't correspond to pattern "(L|D)"