LeetCode - 38. Count and Say

简介: 38. Count and Say  Problem's Link  ---------------------------------------------------------------------------- Mean:  题目意思太晦涩。

38. Count and Say 

Problem's Link

 ----------------------------------------------------------------------------

Mean: 

题目意思太晦涩。

1 读出来 就是“1个1” 所以记为“11”

11 读出来 就是“2个1” 所以记为“21”

21 读出来 就是“1个2 1个1” 所以记为“1221”

....

analyse:

略.

Time complexity: O(N)

 

view code

1.recursive way:

/**
* -----------------------------------------------------------------
* Copyright (c) 2016 crazyacking.All rights reserved.
* -----------------------------------------------------------------
*       Author: crazyacking
*       Date  : 2016-03-05-16.58
*/
#include <queue>
#include <cstdio>
#include <set>
#include <string>
#include <stack>
#include <cmath>
#include <climits>
#include <map>
#include <cstdlib>
#include <iostream>
#include <vector>
#include <algorithm>
#include <cstring>
using namespace std;
typedef long long( LL);
typedef unsigned long long( ULL);
const double eps( 1e-8);


class Solution
{
public :
    string countAndSay( int n)
    {
        string ret;
        ret . push_back( '1');
        return solve( ret ,n);
    }

    string solve( string & str , int n)
    {
        if(n == 1)
            return str;
        int len = str . length();
        string ret;
        for( int i = 1; i < len; ++ i)
        {
            int cnt = 1;
            while( i < len && str [ i ] == str [ i - 1 ])
            {
                ++ cnt;
                ++ i;
            }
            ret . push_back( char( cnt + '0'));
            ret . push_back( str [ i - 1 ]);
        }

        if( len > 2)
        {
            if( str [ len - 1 ] != str [ len - 2 ])
            {
                ret . push_back( char( 1 + '0'));
                ret . push_back( str [ len - 1 ]);
            }
        }
        else if( len == 2)
        {
            if( str [ 1 ] != str [ 0 ])
            {
                ret . push_back( char( 1 + '0'));
                ret . push_back( str [ len - 1 ]);
            }

        }
        else
        {
            ret . push_back( char( 1 + '0'));
            ret . push_back( str [ 0 ]);
        }
        return solve( ret ,n - 1);
    }
};

int main()
{
    int n;
    while( cin >>n)
    {
        Solution solution;
        cout << solution . countAndSay(n) << endl;
    }
    return 0;
}
/*

*/

 

2.no-recursive way:

///**
// * -----------------------------------------------------------------
// * Copyright (c) 2016 crazyacking.All rights reserved.
// * -----------------------------------------------------------------
// *       Author: crazyacking
// *       Date  : 2016-03-05-16.58
// */
//#include <queue>
//#include <cstdio>
//#include <set>
//#include <string>
//#include <stack>
//#include <cmath>
//#include <climits>
//#include <map>
//#include <cstdlib>
//#include <iostream>
//#include <vector>
//#include <algorithm>
//#include <cstring>
//using namespace std;
//typedef long long(LL);
//typedef unsigned long long(ULL);
//const double eps(1e-8);
//
//
//class Solution
//{
//public:
//    string countAndSay(int n)
//    {
//        string ret;
//        ret.push_back('1');
//        return solve(ret,n);
//    }
//
//    string solve(string& str,int n)
//    {
//        if(n==1)
//            return str;
//        int len=str.length();
//        string ret;
//        for(int i=1; i<len; ++i)
//        {
//            int cnt=1;
//            while(i<len && str[i]==str[i-1])
//            {
//                ++cnt;
//                ++i;
//            }
//            ret.push_back(char(cnt+'0'));
//            ret.push_back(str[i-1]);
//        }
//
//        if(len>2)
//        {
//            if(str[len-1]!=str[len-2])
//            {
//                ret.push_back(char(1+'0'));
//                ret.push_back(str[len-1]);
//            }
//        }
//        else if(len==2)
//        {
//            if(str[1]!=str[0])
//            {
//                ret.push_back(char(1+'0'));
//                ret.push_back(str[len-1]);
//            }
//
//        }
//        else
//        {
//            ret.push_back(char(1+'0'));
//            ret.push_back(str[0]);
//        }
//        return solve(ret,n-1);
//    }
//};
//
//int main()
//{
//    int n;
//    while(cin>>n)
//    {
//        Solution solution;
//        cout<<solution.countAndSay(n)<<endl;
//    }
//    return 0;
//}
///*
//
//*/



/**
* -----------------------------------------------------------------
* Copyright (c) 2016 crazyacking.All rights reserved.
* -----------------------------------------------------------------
*       Author: crazyacking
*       Date  : 2016-03-05-17.33
*/
#include <queue>
#include <cstdio>
#include <set>
#include <string>
#include <stack>
#include <cmath>
#include <climits>
#include <map>
#include <cstdlib>
#include <iostream>
#include <vector>
#include <algorithm>
#include <cstring>
#include <bits/stdc++.h>
using namespace std;
typedef long long( LL);
typedef unsigned long long( ULL);
const double eps( 1e-8);


class Solution
{
public :
    string countAndSay( int n)
    {
        if(n == 0)
            return string( "");
        string ret = "1";
        string str;
        while( --n)
        {
            str . clear();
            for( int i = 0; i < ret . size(); ++ i)
            {
                int cnt = 1;
                while( i + 1 < ret . size() && ret [ i ] == ret [ i + 1 ])
                    ++ cnt , ++ i;
                str . push_back( char( cnt + '0'));
                str += ret [ i ];
            }
            ret = str;
        }
        return ret;
    }
};


int main()
{
    int n;
    while( cin >>n)
    {
        Solution solution;
        cout << solution . countAndSay(n) << endl;
    }
    return 0;
}
/*

*/
目录
相关文章
LeetCode 357. Count Numbers with Unique Digits
给定一个非负整数 n,计算各位数字都不同的数字 x 的个数,其中 0 ≤ x < 10n 。
90 0
LeetCode 357. Count Numbers with Unique Digits
|
存储 Python
LeetCode 315. Count of Smaller Numbers After Self
给定一个整数数组 nums,按要求返回一个新数组 counts。数组 counts 有该性质: counts[i] 的值是 nums[i] 右侧小于 nums[i] 的元素的数量。
97 0
LeetCode 315. Count of Smaller Numbers After Self
LeetCode 222. Count Complete Tree Nodes
给出一个完全二叉树,求出该树的节点个数。
91 0
LeetCode 222. Count Complete Tree Nodes
|
测试技术
LeetCode 204. Count Primes
统计所有小于非负整数 n 的质数的数量。
50 0
LeetCode 204. Count Primes
LeetCode contest 200 5475. 统计好三元组 Count Good Triplets
LeetCode contest 200 5475. 统计好三元组 Count Good Triplets
LeetCode 5340. 统计有序矩阵中的负数 Count Negative Numbers in a Sorted Matrix
LeetCode 5340. 统计有序矩阵中的负数 Count Negative Numbers in a Sorted Matrix
LeetCode之Count and Say
LeetCode之Count and Say
99 0
LeetCode 204 Count Primes(质数计数)(*)
版权声明:转载请联系本人,感谢配合!本站地址:http://blog.csdn.net/nomasp https://blog.csdn.net/NoMasp/article/details/50617645 翻译 计算小于一个非负整数n的质数的个数。
842 0
|
3月前
|
Unix Shell Linux
LeetCode刷题 Shell编程四则 | 194. 转置文件 192. 统计词频 193. 有效电话号码 195. 第十行
本文提供了几个Linux shell脚本编程问题的解决方案,包括转置文件内容、统计词频、验证有效电话号码和提取文件的第十行,每个问题都给出了至少一种实现方法。
LeetCode刷题 Shell编程四则 | 194. 转置文件 192. 统计词频 193. 有效电话号码 195. 第十行