luogu#P9192. [USACO23OPEN] Pareidolia P
[USACO23OPEN] Pareidolia P
题目描述
Pareidolia is the phenomenon where your eyes tend to see familiar patterns in images where none really exist -- for example seeing a face in a cloud. As you might imagine, with Farmer John's constant proximity to cows, he often sees cow-related patterns in everyday objects. For example, if he looks at the string bqessiyexbesszieb
, Farmer John's eyes ignore some of the letters and all he sees is bessiebessie
.
Given a string , let represent the maximum number of repeated copies of bessie
one can form by deleting zero or more of the characters from . In the example above, . Furthermore, given a string , let represent the sum of over all contiguous substrings of .
Farmer John has a string t of length at most consisting only of characters a-z. Please compute A(t), and how A(t) would change after updates, each changing a character of t. Updates are cumulative.
输入格式
The first line of input contains .
The next line contains , followed by lines each containing a position and a character in the range a-z, meaning that the pth character of is changed to .
输出格式
Output lines, the total number of bessies that can be made across all substrings of before any updates and after each update.
题目大意
给定一个字符串 。
定义 表示 这个字符串中删除一些字符后最多能找出多少个 bessie
。
定义 表示对于 中的每个子串 ,求 的和。
先输出一开始的 。接下来有 次修改,每次把 中第 个字符改成 ,要求输出每次修改完的 。
bessiebessie
3
3 l
7 s
3 s
14
7
1
7
提示
Before any updates, twelve substrings contain exactly bessie
and string contains exactly bessie
s, so the total number of bessies is .
After one update, is belsiebessie
. Seven substrings contain exactly one bessie
.
After two updates, is belsiesessie
. Only the entire string contains bessie
.
Input : ;
Inputs : ;
Inputs : ;
Inputs : No additional constraints.