1808 Problem C
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了1808 Problem C相关的知识,希望对你有一定的参考价值。
#include <iostream>
#include <fstream>
#include <string>
using namespace std;
const int maxn = 1024;
int main()
{
string sho,str,ans;
cin>>sho;
while(getline(cin,str))
{
for(int i=0;i<str.size();i++)
{
int j=0;
for(;str[i+j]!=0&&sho[j]!=0;j++)
{
if(str[i+j]!=sho[j])
break;
}
if(sho[j]==0)//跳过符合字符串
i+=(j-1);//总循环里还要再加一次。
else if(str[i]!=‘ ‘)
ans+=str[i];
}
cout<<ans;
}
return 0;
}
以上是关于1808 Problem C的主要内容,如果未能解决你的问题,请参考以下文章
[CSUOJ1808] 地铁(dijkstra,堆,边最短路)
2019 ICPC EC Finals C. Heretical … Möbius(中国剩余定理,序列检验)