Anthony


私信TA

用户名:Anthony1

访问量:3711

签 名:

等  级
排  名 2050
经  验 2485
参赛次数 0
文章发表 5
年  龄 0
在职情况 学生
学  校 中国海洋大学
专  业

  自我简介:

解题思路:

注意事项:

参考代码:

#include<iostream>

#include<iterator>

#include<stdio.h>

#include<iomanip>

#include<string>

#include<cstring>

#include<string.h>

#include<vector>

#include<algorithm>

#include<stdio.h>

#include<math.h>

#include<map>

#include<set>

#include<vector>

#include<stack>

#include<queue>

#include<sstream>

using namespace std;


int  main()

{

string s;

cin >> s;

int n;

cin >> n;

while (n--)

{

string temp;

int temp1 = 1;

for (int i = 0; i < s.length()-1; i++)

{

if (s[i + 1] == s[i])

{

temp1++;

}

else

{

stringstream ss;

string a;

ss << temp1;

ss >> a;

temp += a;

temp1 = 1;

temp += s[i];


}

}

if (s.length() == 1)

{

temp = '1';

temp += s[0];

}

else

{

stringstream ss;

string a;

ss << temp1;

ss >> a;

temp += a;

temp1 = 1;

temp += s[s.length()-1];

}

s = temp;


}

cout << s;

return 0;

}


 

0.0分

2 人评分

  评论区

  • «
  • »