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
#include<bits/stdc++.h>
using namespace std;

const int n_max = 3 * 1e5+7;
int from_left[n_max];
int from_right[n_max];


int main(){
    ios_base::sync_with_stdio(false);
    cin.tie(0);
    int n;
    cin >> n;
    string napis;
    cin >> napis;
    int mod = 0;
    for(int i = 0; i < n; i++){
        from_left[i] = mod * 2;
        if(napis[i] == 'P'){
            mod++;
            from_left[i]++;
        }
    }
    mod = 0;
    for(int i = n - 1; i > -1; i--){
        from_right[i] = mod * 2;
        if(napis[i] == 'L'){
            mod++;
            from_right[i]++;
        }
    }

    for(int i = 0; i < n; i++){
        cout << min(from_left[i], from_right[i]) << ' ';
    }

    return 0;
}