1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
#include <iostream>
#include <vector>

int main() {
    std::ios_base::sync_with_stdio(false);
    std::cin.tie(nullptr);
    int n;
    std::cin >> n;
    std::vector<char> ants(n);
    std::vector<int> inv(n, 0);
    int ls = 0;
    for (int i = 0; i < n; i++) {
        std::cin >> ants[i];
        if (ants[i] == 'L')
        {
            ++ls;
        }
    }
    int invs = 0;
    if(ants[0] == 'P') {
        invs++;
    }
    inv[0]=invs;
    for (int i = 1; i < ls; i++) {
        if(ants[i] == 'L') {
            if(ants[i - 1] == 'P') {
                invs++;
            }
        }
        else {
            if(ants[i - 1] == 'P') {
                invs+=2;
            }
            else {
                invs++;
            }
        }
        inv[i] = invs;
    }
    if(ls < n) {
        invs = 0;
        if (ants[n - 1] == 'L') {
            invs++;
        }
        inv[n - 1] = invs;
        for (int i = n - 2; i >= ls; i--) {
            if (ants[i] == 'P') {
                if (ants[i + 1] == 'L') {
                    invs++;
                }
            } else {
                if (ants[i + 1] == 'L') {
                    invs += 2;
                } else {
                    invs++;
                }
            }
            inv[i] = invs;
        }
    }

    for(int i = 0; i < n - 1; i++) {
        std::cout << inv[i] << " ";
    }
    std::cout << inv[n-1] << "\n";
}