1140 Look-and-say Sequence (20 分)难度: 一般 / 知识点: 模拟

Posted 辉小歌

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了1140 Look-and-say Sequence (20 分)难度: 一般 / 知识点: 模拟相关的知识,希望对你有一定的参考价值。


https://pintia.cn/problem-sets/994805342720868352/problems/994805344490864640

#include<bits/stdc++.h>
using namespace std;
int main(void)

    string s; cin>>s;
    int n; cin>>n;
    for(int i=2;i<=n;i++)
    
        string temp;
        for(int j=0;j<s.size();j++)
        
            int z=j;
            while(z+1<s.size()&&s[z]==s[z+1]) z++;
            temp+=s[j]+to_string(z-j+1);
            j=z;
        
        s=temp;
    
    cout<<s;
    return 0;

以上是关于1140 Look-and-say Sequence (20 分)难度: 一般 / 知识点: 模拟的主要内容,如果未能解决你的问题,请参考以下文章

PAT 1140 Look-and-say Sequence

1140 Look-and-say Sequence (20 分)

1140 Look-and-say Sequence

1140 Look-and-say Sequence (20 分)难度: 一般 / 知识点: 模拟

Look-and-Say 数列

MySQL #1140 - GROUP 列的混合