PivotOJ

It's Mooin' Time III

시간 제한: 2000ms메모리 제한: 2048MB출처: USACO 2025 Open BronzeBOJ 33771

문제

Elsie is trying to describe her favorite USACO contest to Bessie, but Bessie is having trouble understanding why Elsie likes it so much. Elsie says "And It's mooin' time! Who wants a mooin'? Please, I just want to do USACO".

Bessie still doesn't understand, so she transcribes Elsie's description in a string of length NN (3N1053 \leq N \leq 10^5) containing lowercase alphabetic characters s1s2sNs_1s_2 \ldots s_N. Elsie considers a string tt containing three characters a moo if t2=t3t_2 = t_3 and t2t1t_2 \neq t_1.

A triplet (i,j,k)(i, j, k) is valid if i<j<ki < j < k and string sisjsks_i s_j s_k forms a moo. For the triplet, FJ performs the following to calculate its value:

  • FJ bends string ss 90-degrees at index jj
  • The value of the triplet is twice the area of Δijk\Delta ijk.

In other words, the value of the triplet is (ji)(kj)(j-i)(k-j).

Bessie asks you QQ (1Q31041 \leq Q \leq 3 \cdot 10^4) queries. In each query, she gives you two integers ll and rr (1lrN1 \leq l \leq r \leq N, rl+13r-l+1 \ge 3) and ask you for the maximum value among valid triplets (i,j,k)(i, j, k) such that lil \leq i and krk \leq r. If no valid triplet exists, output 1-1.

Note that the large size of integers involved in this problem may require the use of 64-bit integer data types (e.g., a "long long" in C/C++).

입력

The first line contains two integers NN and QQ.

The following line contains s1s2,sNs_1 s_2, \ldots s_N.

The following QQ lines contain two integers ll and rr, denoting each query.

출력

Output the answer for each query on a new line.

예제

예제 1

입력
12 5
abcabbacabac
1 12
2 7
4 8
2 5
3 10
출력
28
6
1
-1
12
코드를 제출하려면 로그인하세요.