美文网首页
1140 Look-and-say Sequence(20 分)

1140 Look-and-say Sequence(20 分)

作者: zjh3029 | 来源:发表于2018-08-07 16:49 被阅读0次
#include <iostream>
#include <string>
using namespace std;
int M, N;
int main()
{
    cin >> N >> M;
    string str = to_string(N);
    string str1;
    for (int j = 1; j < M; j++)
    {
        int cnt = 1;
        for (int i=0;i<str.size();i++)
        {
            if(str[i+1]==str[i])
            {
                cnt++;
            }
            else
            {
                str1 += str[i];
                str1 += to_string(cnt);
                cnt = 1;
            }
        }
        str=str1;
        str1.clear();
    }
    cout << str << endl;
    system("pause");
    return 0;
}

相关文章

网友评论

      本文标题:1140 Look-and-say Sequence(20 分)

      本文链接:https://www.haomeiwen.com/subject/wvyavftx.html