I am missing something in the code

My logic is fine but some thing is not correct in my code …not getting exact output

dp[i]=dp[i]-dp[j-1];
this should be
dp[i]=dp[i]-dp[j];

also
m.insert(make_pair(ch,i));
this should be
m[ch]=(i-1);
because you have to maintain the last occurence

also take mod

Modified Code

I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.

On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.