CF570C.Replacement

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Daniel has a string ss , consisting of lowercase English letters and period signs (characters '.'). Let's define the operation of replacement as the following sequence of steps: find a substring ".." (two consecutive periods) in string ss , of all occurrences of the substring let's choose the first one, and replace this substring with string ".". In other words, during the replacement operation, the first two consecutive periods are replaced by one. If string ss contains no two consecutive periods, then nothing happens.

Let's define f(s)f(s) as the minimum number of operations of replacement to perform, so that the string does not have any two consecutive periods left.

You need to process mm queries, the ii -th results in that the character at position xix_{i} ( 1<=xi<=n1<=x_{i}<=n ) of string ss is assigned value cic_{i} . After each operation you have to calculate and output the value of f(s)f(s) .

Help Daniel to process all queries.

输入格式

The first line contains two integers nn and mm ( 1<=n,m<=3000001<=n,m<=300000 ) the length of the string and the number of queries.

The second line contains string ss , consisting of nn lowercase English letters and period signs.

The following mm lines contain the descriptions of queries. The ii -th line contains integer xix_{i} and cic_{i} ( 1<=xi<=n1<=x_{i}<=n , cic_{i} — a lowercas English letter or a period sign), describing the query of assigning symbol cic_{i} to position xix_{i} .

输出格式

Print mm numbers, one per line, the ii -th of these numbers must be equal to the value of f(s)f(s) after performing the ii -th assignment.

输入输出样例

  • 输入#1

    10 3
    .b..bz....
    1 h
    3 c
    9 f
    

    输出#1

    4
    3
    1
    
  • 输入#2

    4 4
    .cc.
    2 .
    3 .
    2 a
    1 a
    

    输出#2

    1
    3
    1
    1
    

说明/提示

Note to the first sample test (replaced periods are enclosed in square brackets).

The original string is ".b..bz....".

  • after the first query f(f( hb..bz.... )) = 4 ("hb[..]bz...." "hb.bz[..].." "hb.bz[..]." "hb.bz[..]" "hb.bz.")
  • after the second query f(f( hbс.bz.... )) = 3 ("hbс.bz[..].." "hbс.bz[..]." "hbс.bz[..]" "hbс.bz.")
  • after the third query f(f( hbс.bz..f. )) = 1 ("hbс.bz[..]f." "hbс.bz.f.")

Note to the second sample test.

The original string is ".cc.".

  • after the first query: f(f( ..c. )) = 1 ("[..]c." ".c.")
  • after the second query: f(f( .... )) = 3 ("[..].." "[..]." "[..]" ".")
  • after the third query: f(f( .a.. )) = 1 (".a[..]" ".a.")
  • after the fourth query: f(f( aa.. )) = 1 ("aa[..]" "aa.")
首页