CodeForces 363C Fixing Typos

Many modern text editors automatically check the spelling of the user’s text. Some editors even suggest how to correct typos.

In this problem your task to implement a small functionality to correct two types of typos in a word. We will assume that three identical letters together is a typo (for example, word “helllo” contains a typo). Besides, a couple of identical letters immediately followed by another couple of identical letters is a typo too (for example, words “helloo” and “wwaatt” contain typos).

Write a code that deletes the minimum number of letters from a word, correcting described typos in the word. You are allowed to delete letters from both ends and from the middle of the word.

Input
The single line of the input contains word s, its length is from 1 to 200000 characters. The given word s consists of lowercase English letters.

Output
Print such word t that it doesn’t contain any typos described in the problem statement and is obtained from s by deleting the least number of letters.

If there are multiple solutions, print any of them.

Example
Input
helloo
Output
hello
Input
woooooow
Output
woow
Note
The second valid answer to the test from the statement is “heloo”.

题意:代码注释
解题思路:代码注释

AC代码:

#include<stdio.h>
#include<string.h>

char str[200010],goal[200010];

int main()
{
    while(~scanf("%s",str))
    {
        int tail=0;
        for(int i=0;str[i];i++)
        {
            if(tail>=2&&str[i]==goal[tail-1]&&str[i]==goal[tail-2]) continue;//不入目标(goal)队列 
            if(tail>=3&&str[i]==goal[tail-1]&&goal[tail-2]==goal[tail-3]) continue;
            goal[tail++]=str[i];
        }
        goal[tail]=0;//结尾添加'\0' 
        printf("%s\n",goal);
    }
    return 0;
}

//1.三个相同的字母不能连续 
//2.不同的两种字母出现两次不能连续,即中间要隔一个其他的字母或者删去其中一个字母 
//wwaatt->wwatt 
//helloo->heloo  or  hello
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值