题目链接:CF750E New Year and Old Subsequence
E. New Year and Old Subsequence
time limit per test
3 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output
A string t is called nice if a string "2017" occurs in t as a subsequence but a string "2016" doesn't occur in t as a subsequence. For example, strings "203434107" and "9220617" are nice, while strings "20016", "1234" and "20167" aren't nice.
The ugliness of a string is the minimum possible number of characters to remove, in order to obtain a nice string. If it's impossible to make a string nice by removing characters, its ugliness is - 1.
Limak has a string s of length n, with characters indexed 1 through n. He asks you q queries. In the i-th query you should compute and print the ugliness of a substring (continuous subsequence) of s starting at the index a__i and ending at the index b__i (inclusive).
Input
The first line of the input contains two integers n and q (4 ≤ n ≤ 200 000, 1 ≤ q ≤ 200 000) — the length of the string s and the number of queries respectively.
The second line contains a string s of length n. Every character is one of digits '0'–'9'.
The i-th of next q lines contains two integers a__i and b__i (1 ≤ a__i ≤ b__i ≤ n), describing a substring in the i-th query.
Output
For each query print the ugliness of the given substring.
Examples
Input
Copy
8 3
20166766
1 8
1 7
2 8
Output
Copy
4
3
-1
Input
Copy
15 5
012016662091670
3 4
1 14
4 15
1 13
10 15
Output
Copy
-1
2
1
-1
-1
Input
Copy
4 2
1234
2 4
1 2
Output
Copy
-1
-1
Note
In the first sample:
- In the first query, ugliness("20166766") = 4 because all four sixes must be removed.
- In the second query, ugliness("2016676") = 3 because all three sixes must be removed.
- In the third query, ugliness("0166766") = - 1 because it's impossible to remove some digits to get a nice string.
In the second sample:
- In the second query, ugliness("01201666209167") = 2. It's optimal to remove the first digit '2' and the last digit '6', what gives a string "010166620917", which is nice.
- In the third query, ugliness("016662091670") = 1. It's optimal to remove the last digit '6', what gives a nice string "01666209170".
题意: 在区间([l,r])中删去最少的字符数使得在这个区间内不含有子序列("2016")且含有子序列("2017"),如果无法满足条件,输出(-1).
题解: 首先看到题目中要求区间的某个值,想到用某种数据结构来维护这个值.
然而这个最小值似乎是要用(DP)来求的?
那么这里就有点动态(DP)的意思了:我们将某个位置的状态加入矩阵中,再对这个序列开一棵线段树,线段树中的节点维护矩阵的状态.
我们将("2017")拆成5份,分别是(empty,2,20,201,2017),用(0 o 4)表示这(5)个状态.
我们设转移矩阵$$D=
left[
egin{matrix}
a_{0,0} & ... & a_{0,4}
a_{i,j-1} & a_{i,j} & a_{i,j+1}
a_{4,0} & ... & a_{4,4}
end{matrix}
ight] ag{3}
同理,对于该位为(0,1,7)都是一样的.
但是如果该位为(6)呢?显然我们是不能让串中出现("2016")的,所以是一定要删除这个字符的,所以它的转移矩阵为$$D=
left[
egin{matrix}
0 & inf & inf & inf & inf
inf & 0 & inf & inf & inf
inf & inf & 0 & inf & inf
inf & inf & inf & 1 & inf
inf & inf & inf & inf & 1
end{matrix}
ight] ag{3}