You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
401 B
19 lines
401 B
#include <bits/stdc++.h>
|
|
using namespace std;
|
|
string s;
|
|
int n;
|
|
int main() {
|
|
cin >> s >> n;
|
|
n--;
|
|
while(n--){
|
|
string t;
|
|
for (int i = 0; i < s.size(); i++){
|
|
int cnt = 1;
|
|
while (i + 1 < s.size() && s[i + 1]==s[i]) cnt++, i++;
|
|
t += to_string(cnt) + s[i];
|
|
}
|
|
s = t;
|
|
}
|
|
cout << s << endl;
|
|
return 0;
|
|
} |