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
#include <cstdio>

using namespace std;

int main() {
    int n = 0;
    scanf("%d", &n);
    int tab[n];
    char c;
    for(int i = 0; i < n; i++){
        scanf(" %c", &c);
        if(c == 'L'){
            tab[i] = 0;
        } else {
            tab[i] = 1;
        }
    }
    int output[n];
    for(int i = 0; i < n; i++){
        output[i] = 0;
    }
    int changes = -1;
    while(changes != 0){
        changes = 0;
        for(int i = 0; i < n; i++){
            if(tab[i] == 0){
                if(i == 0){
                    continue;
                }
                if(tab[i-1] == 1){
                    output[i]++;
                    tab[i] = 1;
                    output[i - 1]++;
                    tab[i-1] = 0;
                    changes += 2;
                }
            }
            if(tab[i] == 1){
                if(i == n-1){
                    break;
                }
                if(tab[i+1] == 0){
                    output[i]++;
                    tab[i] = 0;
                    output[i + 1]++;
                    tab[i+1] = 1;
                    changes += 2;
                }
            }
        }
    }
    for(int i = 0; i < n; i++){
        printf("%d ", output[i]);
    }
    return 0;
}