Codeforces Round #316 (Div. 2)C. Replacement(模拟)

传送门

Description

Daniel has a string s, 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 s, 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 s contains no two consecutive periods, then nothing happens.

Let‘s define 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 m queries, the i-th results in that the character at position xi (1 ≤ xi ≤ n) of string s is assigned value ci. After each operation you have to calculate and output the value of f(s).

Help Daniel to process all queries.

Input

The first line contains two integers n and m (1 ≤ n, m ≤ 300 000) the length of the string and the number of queries.

The second line contains string s, consisting of n lowercase English letters and period signs.

The following m lines contain the descriptions of queries. The i-th line contains integer xi and ci (1 ≤ xi ≤ nci — a lowercas English letter or a period sign), describing the query of assigning symbol ci to position xi.

Output

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

Sample Input

10 3.b..bz....1 h3 c9 f

4 4.cc.2 .3 .2 a1 a

Sample Output

431

1311

Note

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

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

  • after the first query f(hb..bz....) = 4    ("hb[..]bz...."  →  "hb.bz[..].."  →  "hb.bz[..]."  →  "hb.bz[..]"  → "hb.bz.")
  • after the second query f(hbс.bz....) = 3    ("hbс.bz[..].."  →  "hbс.bz[..]."  →  "hbс.bz[..]"  →  "hbс.bz.")
  • after the third query 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(..c.) = 1    ("[..]c."  →  ".c.")
  • after the second query: f(....) = 3    ("[..].."  →  "[..]."  →  "[..]"  →  ".")
  • after the third query: f(.a..) = 1    (".a[..]"  →  ".a.")
  • after the fourth query: f(aa..) = 1    ("aa[..]"  →  "aa.")

思路

题解:

暴力肯定超时,注意到f(s)的值为“点数-段数”,预处理出第一次的点数与段数,然后在每次更改中,更新点数与段数的值即可。简单模拟。

#include<bits/stdc++.h>
using namespace std;
const int maxn = 300005;
char str[maxn];

int main()
{
	//freopen("input.txt","r",stdin);
	int n,m,pos,dot = 0,segment = 0;
    char ch;
    scanf("%d%d",&n,&m);
    scanf("%s",str);
    for (int i = 0;i < n;i++)
    {
        if (str[i] == ‘.‘)  dot++;
        if (str[i] == ‘.‘ && (!i || str[i-1] != ‘.‘))   segment++;
    }
    for (int i = 0;i < m;i++)
    {
        scanf("%d %c",&pos,&ch);
        pos--;
        if (ch != ‘.‘)
        {
            if (str[pos] == ‘.‘)
            {
                dot--;
                if (!pos && str[pos + 1] != ‘.‘)    segment--;
                else if (pos == n - 1 && str[pos - 1] != ‘.‘)    segment--;
                else if (pos && pos < n - 1 && str[pos - 1] == ‘.‘ && str[pos + 1] == ‘.‘)  segment++;
                else if (pos && pos < n - 1 && str[pos - 1] != ‘.‘ && str[pos + 1] != ‘.‘)  segment--;
            }
            str[pos] = ch;
        }
        else
        {
            if (str[pos] != ‘.‘)
            {
                dot++;
                if (!pos && str[pos + 1] != ‘.‘)    segment++;
                else if (pos == n - 1 && str[pos - 1] != ‘.‘)    segment++;
                else if (pos && pos < n - 1 && str[pos - 1] == ‘.‘ && str[pos + 1] == ‘.‘)  segment--;
                else if (pos && pos < n - 1 && str[pos - 1] != ‘.‘ && str[pos + 1] != ‘.‘)  segment++;
            }
            str[pos] = ch;
        }
        printf("%d\n",dot - segment);
    }
    return 0;
}

  

时间: 2024-10-28 21:47:11

Codeforces Round #316 (Div. 2)C. Replacement(模拟)的相关文章

Codeforces Round #316 (Div. 2) C. Replacement

题意:给定一个字符串,里面有各种小写字母和' . ' ,无论是什么字母,都是一样的,假设遇到' . . ' ,就要合并成一个' .',有m个询问,每次都在字符串某个位置上将原来的字符改成题目给的字符,问每次须要多少次合并次数.才使字符串没有' .. ' 思路:最原始的想法,就是对于每一次询问,都遍历整个字符串.这样时间复杂度o(n*m),就高达10^10方,非常明显会tle. 换下思路,事实上每次询问所改变的字符都会保留到下一次.也就是下一次的次数就会受到上一次的影响,那么我仅仅要就算出第一次的

Codeforces Round #316 (Div. 2) C Replacement 扫描法

先扫描一遍得到每个位置向后连续的'.'的长度,包含自身,然后在扫一遍求出初始的合并次数. 对于询问,只要对应位置判断一下是不是'.',以及周围的情况. #include<bits/stdc++.h> using namespace std; const int maxn = 3e5+5; char s[maxn]; int post[maxn]; int main() { //freopen("in.txt","r",stdin); int n,m; s

Codeforces Round #259 (Div. 2) (简单模拟实现题)

题目链接:http://codeforces.com/problemset/problem/454/A A. Little Pony and Crystal Mine time limit per test 1 second memory limit per test 256 megabytes input standard input output standard output Twilight Sparkle once got a crystal from the Crystal Mine

2017-4-30-Train:Codeforces Round #316 (Div. 2)

A. Elections(模拟) The country of Byalechinsk is running elections involving n candidates. The country consists of m cities. We know how many people in each city voted for each candidate. The electoral system in the country is pretty unusual. At the fi

Codeforces Round #316 (Div. 2) (ABC题)

A - Elections 题意: 每一场城市选举的结果,第一关键字是票数(降序),第二关键字是序号(升序),第一位获得胜利: 最后的选举结果,第一关键字是获胜城市数(降序),第二关键字是序号(升序),第一位获得胜利: 求最后选举获胜者. 思路: 直接模拟即可. 代码: /* * @author FreeWifi_novicer * language : C++/C */ #include<cstdio> #include<iostream> #include<cstring

Codeforces Round #327 (Div. 2) B. Rebranding 模拟

B. Rebranding The name of one small but proud corporation consists of n lowercase English letters. The Corporation has decided to try rebranding — an active marketing strategy, that includes a set of measures to change either the brand (both for the

Codeforces Round #316 (Div. 2) B. Simple Game

思路:把n分成[1,n/2],[n/2+1,n],假设m在左区间.a=m+1,假设m在右区间,a=m-1.可是我居然忘了处理1,1这个特殊数据.被人hack了. 总结:下次一定要注意了,提交前一定要看下边界数据,不要急着交. 题目链接:http://codeforces.com/problemset/problem/570/B <pre name="code" class="cpp">#include<bits/stdc++.h> using

Codeforces Round #316 (Div. 2) A B C

A. Elections time limit per test 1 second memory limit per test 256 megabytes input standard input output standard output The country of Byalechinsk is running elections involving n candidates. The country consists of m cities. We know how many peopl

Codeforces Round #316 (Div. 2)

A - Elections 1 #include<bits/stdc++.h> 2 using namespace std; 3 int n,m,num[105],a[105][105]; 4 int main() 5 { 6 scanf("%d%d",&n,&m); 7 for(int i=1;i<=m;i++) 8 { 9 int item=1; 10 for(int j=1;j<=n;j++) 11 { 12 scanf("%d&