CF1555D.Say No to Palindromes
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Let's call the string beautiful if it does not contain a substring of length at least 2 , which is a palindrome. Recall that a palindrome is a string that reads the same way from the first character to the last and from the last character to the first. For example, the strings a, bab, acca, bcabcbacb are palindromes, but the strings ab, abbbaa, cccb are not.
Let's define cost of a string as the minimum number of operations so that the string becomes beautiful, if in one operation it is allowed to change any character of the string to one of the first 3 letters of the Latin alphabet (in lowercase).
You are given a string s of length n , each character of the string is one of the first 3 letters of the Latin alphabet (in lowercase).
You have to answer m queries — calculate the cost of the substring of the string s from li -th to ri -th position, inclusive.
输入格式
The first line contains two integers n and m ( 1≤n,m≤2⋅105 ) — the length of the string s and the number of queries.
The second line contains the string s , it consists of n characters, each character one of the first 3 Latin letters.
The following m lines contain two integers li and ri ( 1≤li≤ri≤n ) — parameters of the i -th query.
输出格式
For each query, print a single integer — the cost of the substring of the string s from li -th to ri -th position, inclusive.
输入输出样例
输入#1
5 4 baacb 1 3 1 5 4 5 2 3
输出#1
1 2 0 1
说明/提示
Consider the queries of the example test.
- in the first query, the substring is baa, which can be changed to bac in one operation;
- in the second query, the substring is baacb, which can be changed to cbacb in two operations;
- in the third query, the substring is cb, which can be left unchanged;
- in the fourth query, the substring is aa, which can be changed to ba in one operation.