0
2023-10-15 11:46:40
发布于:广东
14阅读
0回复
0点赞
}
链接描述
#include<bits/stdc++.h>
using namespace std;
int main()
{
int n;
string s,temp;
cin>>s;
cin>>n;
while(n--)
{
int len=s.size();
temp="";
for(int i=0;i<len;i++)
{
int cnt=1;
int j=i+1;
while(s[i]==s[j])
{
cnt++;
j++;
}
temp+=(cnt+'0');
temp+=s[i];
i=j-1;
}
s=temp;
}
cout<<s;
return 0;
}
这里空空如也
有帮助,赞一个