美文网首页
CodeFoeces-978B

CodeFoeces-978B

作者: ss5smi | 来源:发表于2018-05-14 20:16 被阅读0次

题目

原题链接:B. File Name

题意

给出一个字符串,问需要删除多少字符来使字串不存在“xxx”。

代码

#include<bits/stdc++.h>
using namespace std;
int main() {
    int n,ans=0;
    string s;
    cin>>n;
    cin>>s;
    for(int i=0;i<n-2;i++){
        if(s[i]=='x' && s[i+1]=='x' && s[i+2]=='x'){
            ans++;
        }
    }
    printf("%d\n",ans);
    return 0;
}

相关文章

  • CodeFoeces-978B

    题目 原题链接:B. File Name 题意 给出一个字符串,问需要删除多少字符来使字串不存在“xxx”。 代码

网友评论

      本文标题:CodeFoeces-978B

      本文链接:https://www.haomeiwen.com/subject/mmgorftx.html