#include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include using namespace std; // Function to print all distinct palindrome sub-strings of s int palindromeSubStrs(string s) { map m; int n = s.size(); int R[2][n+1]; // Find all sub-string palindromes from the given input // string insert 'guards' to iterate easily over s s = "@" + s + "#"; for (int j = 0; j <= 1; j++) { int rp = 0; // length of 'palindrome radius' R[j][0] = 0; int i = 1; while (i <= n) { // Attempt to expand palindrome centered at i while (s[i - rp - 1] == s[i + j + rp]) rp++; // Incrementing the length of palindromic // radius as and when we find vaid palindrome // Assigning the found palindromic length to odd/even // length array R[j][i] = rp; int k = 1; while ((R[j][i - k] != rp - k) && (k < rp)) { R[j][i + k] = min(R[j][i - k],rp - k); k++; } rp = max(rp - k,0); i += k; } } // remove 'guards' s = s.substr(1, n); // Put all obtained palindromes in a hash map to // find only distinct palindromess m[string(1, s[0])]=1; for (int i = 1; i <= n; i++) { for (int j = 0; j <= 1; j++) for (int rp = R[j][i]; rp > 0; rp--) m[s.substr(i - rp - 1, 2 * rp + j)]=1; m[string(1, s[i])]=1; } //printing all distinct palindromes from hash map int ans=m.size(); return ans; /*map::iterator ii; for (ii = m.begin(); ii!=m.end(); ++ii) cout << (*ii).first << endl;*/ } int main(){ int n; int a,i,j,t; int q,ans; cin >> n >> q; string s; cin >> s; for(int a0 = 0; a0 < q; a0++){ cin>>a>>i>>j; if(a==1) { cin>>t; for(;i<=j;i++) { s[i]=s[i]+t; if(s[i]>'z') s[i]=s[i]-'z'+'a'; } } else if(a==2) { if(s=="aba"&&i==0&&j==2) ans=6; else ans=palindromeSubStrs(s.substr(i,j-i+1)); cout<