比赛 20151028a 评测结果 AAAAAAAAEEEEEEEEEETEEEEEEE
题目名称 复制&粘贴 最终得分 30
用户昵称 1azyReaper 运行时间 14.481 s
代码语言 C++ 内存使用 0.32 MiB
提交时间 2015-10-28 09:48:29
显示代码纯文本
#include <fstream>
#include <algorithm>
#include <cstdio>
#include <cstring>
#define ifs ifstream
#define ofs ofstream
using namespace std;
/*++++++++++++++XPK STUDIO++++++++++++++
  Date:2015-10-28
  Editor:ReaperLee
  Lang:c++
  ++++++++++++++XPK STUDIO++++++++++++++*/
ifs fin("copypaste.in");
ofs fout("copypaste.out");
int main()
{
	string str;
	int k,m;
	fin>>k>>m;
	int n;
	fin>>str;
	fin>>n;
	for(int i=1;i<=n;i++)
	{
		int a,b,c;
		fin>>a>>b>>c;
		//int loc=str.length();
		string cpy,c1,c2;
		cpy=str.substr(a,b-a);
		c1=str.substr(0,c);
		c2=str.substr(c,str.length());
		string pop;
		str=c1+cpy+c2;
		if(str.length()>m)
		{
			str.erase(m,str.length());
		}
	}
	string ans;
	ans=str.substr(0,k);
	fout<<ans<<endl;
	return 0;
}