记录编号 |
200317 |
评测结果 |
EEEEEEEETTTTTETEEETT |
题目名称 |
复制&粘贴 |
最终得分 |
0 |
用户昵称 |
AISS |
是否通过 |
未通过 |
代码语言 |
C++ |
运行时间 |
12.627 s |
提交时间 |
2015-10-28 17:39:30 |
内存使用 |
0.31 MiB |
显示代码纯文本
#include<cstdio>
#include<cstring>
#include<cstdlib>
#include<iostream>
#include<cmath>
#include<algorithm>
#include<string>
#include<set>
#include<map>
#include<vector>
#define maxn 100005
using namespace std;
int i,j,k,m,n;
string s;
void op(int a,int b,int c){
string t=s.substr(a,b-a);
s.insert(c,t);
int sz=s.size();
if(sz>m/2)s.erase(m/2,sz-m/2);
}
int main(){
freopen("copypaste.in","r",stdin);
freopen("copypaste.out","w",stdout);
cin>>k>>m>>s>>n;
for(i=0;i<n;i++){
int a,b,c;
scanf("%d%d%d",&a,&b,&c);
op(a,b,c);
}
for(i=0;i<k;i++)printf("%c",s[i]);
return 0;
}