比赛 |
NOIP2015普及组练习 |
评测结果 |
AAAAAAAAAA |
题目名称 |
字符串编辑 |
最终得分 |
100 |
用户昵称 |
Arrow |
运行时间 |
0.012 s |
代码语言 |
C++ |
内存使用 |
0.28 MiB |
提交时间 |
2015-11-05 20:33:58 |
显示代码纯文本
#include<fstream>
#include<string>
using namespace std;
int main()
{
ifstream fin("edit.in");
ofstream fout("edit.out");
string a,r;
char b,c,d1,d2,e1,e2;
int h,s=0,j;
getline(fin,a);
h=a.length();
fin>>b;
if(b=='D'){
fin>>c;
for(int i=0;i<h;i++){
if(a[i]==c){
a.erase(i,1);fout<<a;break;}}}
if(b=='I'){
fin>>d1>>d2;
j=a.find_last_of(d1);
r=a.substr(j);
a.erase(j);
a=a+d2+r;
fout<<a;}
if(b=='R'){
fin>>e1>>e2;
for(int i=0;i<h;i++){
if(a[i]==e1){
a[i]=e2;s=1;}}
if(s==0) fout<<"error";
if(s==1)fout<<a; }
fin.close();
fout.close();
return 0;
}