比赛 名字我取了 评测结果 AAAAAAAAAATETET
题目名称 字串重组 最终得分 66
用户昵称 Ceres 运行时间 5.391 s
代码语言 C++ 内存使用 9.95 MiB
提交时间 2017-09-15 21:32:10
显示代码纯文本
#include <fstream>
#include <string>
using namespace std;
ifstream ci("R.in");
ofstream co("R.out");
string t;int n=0,ma=0,k=0,w,len=0;char s[10000100];//声明变量
int main()
{
	ci>>n;
	for(int i=1;i<=10000100;i++)
		s[i]='a';
	for(int a=1;a<=n;a++)
	{
		ci>>t>>k;
		len=t.length();
		for(int i=1;i<=k;i++)
		{		
			ci>>w;
			for(int j=1;j<=len;j++)
				s[w+j-1]=t[j-1];
		}
		ma=(w+len-1>ma)?w+len-1:ma;
	}
	for(int i=1;i<=ma;i++)
			co<<s[i];
	co<<endl;
	ci.close();
	co.close();
	return 0;
}