#ifndef LOCAL #include using namespace std; #define debug(...) (void(0)) #else #include "algo/debug.h" #endif #include constexpr int inf = 1e9; constexpr int M = 4; using S = array, M>; S e() { return S{}; } S op(S a, S b) { S res; for(int i = 0; i < M; i++) for(int j = 0; j < M; j++) res[i][j] = inf; for (int i = 0; i < M; i++) { for (int j = i; j < M; j++) { for (int k = i; k <= j; k++) { res[i][j] = min(res[i][j], a[i][k] + b[k][j]); } } } return res; } S mk(int t) { S res = e(); for(int i = 0; i < M; i++) { for(int j = i; j < M; j++) { if(i <= t && t <= j) res[i][j] = 0; else res[i][j] = 1; } } return res; } void solve() { int N, Q; cin >> N >> Q; string T; cin >> T; atcoder::segtree seg(N); for(int i = 0; i < N; i++) seg.set(i, mk(T[i] - 'A')); while(Q--) { int t; cin >> t; if(t == 1) { int p; char c; cin >> p >> c; seg.set(--p, mk(c - 'A')); } else { int l, r; cin >> l >> r; l--; S res = seg.prod(l, r); int ans = inf; for(int i = 0; i < M; i++) for(int j = i; j < M; j++) ans = min(ans, res[i][j]); cout << ans << '\n'; } } } int main() { std::ios::sync_with_stdio(false); std::cin.tie(nullptr); int tt = 1; // std::cin >> tt; while (tt--) { solve(); } }