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
#include <iostream>
#include <string>

bool check(std::string text)
{
    if (text.size() == 1) return true;

    for (int i = 1; i < text.size(); i++)
    {
        if (text[i - 1] == text[i])
        {
            if (text[i] == 'C')
            {
                if (check(text.substr(0, i - 1) + "Z" + text.substr(i + 1, text.size() - i - 1)))
                return true;
            }
            else if (check(text.substr(0, i - 1) + "C" + text.substr(i + 1, text.size() - i - 1)))
                return true;
        }
    }

    return false;
}

int solve(std::string text, int result)
{
    int i = text.find('N');

    if (i == std::string::npos)
    {
        if (check(text)) return result + 1;
        return result;
    }

    result = solve(text.substr(0, i) + "C" + text.substr(i + 1, text.size() - i - 1), result);
    result = solve(text.substr(0, i) + "Z" + text.substr(i + 1, text.size() - i - 1), result);

    return result;
}

int main()
{
    std::ios_base::sync_with_stdio(false);
    std::cin.tie(NULL);

    int n, q; std::cin >> n >> q;
    std::string text; std::cin >> text;

    std::cout << solve(text, 0) << "\n";

    for (int i = 0; i < q; i++)
    {
        int index; char letter;
        std::cin >> index >> letter;
        text[index - 1] = letter;
        std::cout << solve(text, 0) << "\n";
    }
    
    return 0;
}