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
67
68
69
70
71
72
#include<bits/stdc++.h>
#define fi first
#define se second
using namespace std;
const int MOD=1e9+7;
const int N=2e5;
int mp[300];
int tab[N+10];
int cnt[3];
int alt[3][2];
long long w[N+10][3];
long long pot[N+10];
void solve(int n)
{
	long long ans=pot[cnt[2]];
	for(int i=0;i<=cnt[2];i++)
	{
		if((cnt[0]+i)%3==(cnt[1]+cnt[2]-i)%3)
		{
			ans-=w[cnt[2]][i];
			break;
		}
	}
	if(n%2==1 && (!alt[0][0] || !alt[0][1]) && (!alt[1][0] || !alt[1][1]) && (!alt[0][1] || !alt[1][1]) && (!alt[0][0] || !alt[1][0]))
		ans--;
	cout<<(ans%MOD+MOD)%MOD<<"\n";
	return;
}
int main()
{
	ios_base::sync_with_stdio(false);
	cin.tie(NULL);
	cout.tie(NULL);
	mp['Z']=0;
	mp['C']=1;
	mp['N']=2;
	int n,q;
	cin>>n>>q;
	for(int i=1;i<=n;i++)
	{
		char c;
		cin>>c;
		tab[i]=mp[(int)c];
		cnt[tab[i]]++;
		alt[tab[i]][i%2]++;
	}
	w[0][0]=1;
	pot[0]=1;
	for(int i=1;i<=n;i++)
	{
		pot[i]=(pot[i-1]*2)%MOD;
		for(int j:{0,1,2})
		{
			w[i][j]=(w[i-1][j]+w[i-1][(j+2)%3])%MOD;
			//cerr<<i<<" "<<j<<" "<<w[i][j]<<"\n";
		}
	}
	solve(n);
	while(q--)
	{
		int a;
		char b;
		cin>>a>>b;
		cnt[tab[a]]--;
		alt[tab[a]][a%2]--;
		tab[a]=mp[(int)b];
		cnt[tab[a]]++;
		alt[tab[a]][a%2]++;
		solve(n);
	}
	return 0;
}