【LeetCode】481. Magical String 解题报告(Python)

标签(空格分隔): LeetCode

作者: 负雪明烛
id: fuxuemingzhu
个人博客: http://fuxuemingzhu.cn/


题目地址:https://leetcode.com/problems/magical-string/description/

题目描述:

A magical string S consists of only ‘1’ and ‘2’ and obeys the following rules:

The string S is magical because concatenating the number of contiguous occurrences of characters ‘1’ and ‘2’ generates the string S itself.

The first few elements of string S is the following: S = “1221121221221121122……”

If we group the consecutive ‘1’s and ‘2’s in S, it will be:

1 22 11 2 1 22 1 22 11 2 11 22 ……

and the occurrences of ‘1’s or ‘2’s in each group are:

1 2 2 1 1 2 1 2 2 1 2 2 ……

You can see that the occurrence sequence above is the S itself.

Given an integer N as input, return the number of ‘1’s in the first N number in the magical string S.

Note: N will not exceed 100,000.

Example 1:

Input: 6
Output: 3
Explanation: The first 6 elements of magical string S is "12211" and it contains three 1's, so return 3.

题目大意

有一个遵守一个规则的字符串S,求这个S前n位共有多少个1.这个规则是这样的:把相同的数字合并成一个组,然后统计这个组的长度,我们发现这个组的长度组成的新的字符串和S是完全相等的。

解题方法

一定要手动推算一下才明白这个逻辑。因为只有1和2两个数字,组的长度和S是相同的,所以是可以确定S的每个位置的。

S的开头一定是1,2,2;合并就是1个1、2个2,所以到了第三个数字,这个数字是2,所以一定是2个1,故S的下两位是1,即S是1,2,2,1,1;到了S的第四个数字是1,所以下面是1个2;即S是1,2,2,1,1,2……

通过上面的规律看出,需要一个列表一个指针,指针每次向后走一个位置,S增加的是指针指向的这个位置的数字 个 (3-列表最后一个数字)。

注意,因为列表每次可能会增加一个或者两个数字,我们需要的是前n个数字,所以最后统计1的时候,需要对S进行切片。

代码如下:

class Solution(object):
def magicalString(self, n):
"""
:type n: int
:rtype: int
"""
S = [1, 2, 2]
idx = 2
while len(S) < n:
S += [3 - S[-1]] * S[idx]
idx += 1
return S[:n].count(1)

参考资料:

https://leetcode.com/problems/magical-string/discuss/96472/Short-Python-using-queue

日期

2018 年 9 月 7 日 ———— 中午不睡,下午崩溃

最新文章

  1. 如何清除Xcode8打印的系统日志
  2. 【Android学习】android布局中几个距离单位的区别:px、dp、sp
  3. HTML5移动Web开发(六)——定义一个内容策略
  4. CentOS 7 安装 Oracle 11g
  5. BZOJ3175 Tjoi2013 攻击装置(二分图匹配)
  6. centOS6.6升级gcc4.8
  7. Python 字典(Dictionary)操作详解
  8. oracle 查看用户表数目,表大小,视图数目等
  9. Lambda表达式 简介 语法 示例
  10. ASP.NET状缓存Cache的应用-提高数据库读取速度
  11. paip.提升用户体验---论文本编辑器的色彩方案
  12. HUST 1555 A Math Homework
  13. js中的setTimeout和setinterval 用法说明
  14. 检索html页自生成&amp;nasp;标签,并替换为空(即去掉空格)
  15. 5.数码相框-额外项目电子书总结,并使用svgalib库
  16. 学机器学习,不会数据分析怎么行——数据可视化分析(matplotlib)
  17. El表达式对照表
  18. RightScale 2019年云状态报告:公共云快速增长 微软Azure增长最快
  19. 关于MySQL数据库
  20. android 错误收集

热门文章

  1. 【NetCore】RabbitMQ 封装
  2. c++ cmake及包管理工具conan简单入门
  3. 理解各种不同含义的 new 和 delete
  4. C++ 之杂记
  5. 删除button中除label之外的View
  6. Javaj基础知识runtime error
  7. Equinox OSGi服务器应用程序的配置步骤 (支持JSP页面)
  8. C/C++ Qt 数据库SqlRelationalTable关联表
  9. jdk1.7源码之-hashMap源码解析
  10. 记一次单机Nginx调优,效果立竿见影