884. Decoded String at Index

42 篇文章 0 订阅
18 篇文章 0 订阅

 

An encoded string S is given.  To find and write the decoded string to a tape, the encoded string is read one character at a time and the following steps are taken:

  • If the character read is a letter, that letter is written onto the tape.
  • If the character read is a digit (say d), the entire current tape is repeatedly written d-1 more times in total.

Now for some encoded string S, and an index K, find and return the K-th letter (1 indexed) in the decoded string.

 

Example 1:

Input: S = "leet2code3", K = 10
Output: "o"
Explanation: 
The decoded string is "leetleetcodeleetleetcodeleetleetcode".
The 10th letter in the string is "o".

Example 2:

Input: S = "ha22", K = 5
Output: "h"
Explanation: 
The decoded string is "hahahaha".  The 5th letter is "h".

Example 3:

Input: S = "a2345678999999999999999", K = 1
Output: "a"
Explanation: 
The decoded string is "a" repeated 8301530446056247680 times.  The 1st letter is "a".

 

Note:

  1. 2 <= S.length <= 100
  2. S will only contain lowercase letters and digits 2 through 9.
  3. S starts with a letter.
  4. 1 <= K <= 10^9
  5. The decoded string is guaranteed to have less than 2^63 letters.

处理到不好处理的时候,就递归一下

class Solution:
    def decodeAtIndex(self, S, K):
        """
        :type S: str
        :type K: int
        :rtype: str
        """
        s=set([str(i) for i in range(2,10)])
        i=cnt=0
        while i<len(S):
            j=i
            while j<len(S) and S[j] not in s:
                j+=1
                cnt+=1
                if cnt==K: return S[j-1]
            
            while j<len(S) and S[j] in s:
                if cnt*int(S[j])>=K:
                    left = K%cnt
                    if left==0: left=cnt
                    return self.decodeAtIndex(S[:j], left)
                
                cnt = cnt*int(S[j])
                j+=1
            i=j
            
        return None
                

Discuss里有很简单的写法:先往右扩,扩到超过K,然后往回退

idea真的很simple,但是确实有效,其实就是个stack,看到题目应该要能想到能用stack来解的

We decode the string and N keeps the length of decoded string, until N >= K.
Then we go back from the decoding position.
If it's S[i] = d is a digit, then N = N / d before repeat and K = K % N is what we want.
If it's S[i] = c is a character, we return c if K == 0 or K == N

 def decodeAtIndex(self, S, K):
        N = 0
        for i, c in enumerate(S):
            N = N * int(c) if c.isdigit() else N + 1
            if K <= N: break
        for j in range(i, -1, -1):
            c = S[j]
            if c.isdigit():
                N /= int(c)
                K %= N
            else:
                if K == N or K == 0: return c
                N -= 1
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
@Override //说明下面公有函数是从父类mButtonListener继承而来,实际是重写onClick事件响应接口(类似回调)函数 public void onClick(View v) //每次按钮被操作,都会调用本重写的消息回调公有函数 { if (aaa == 2131230819) final Thread thread1 = new Thread() //新开第2个TCP通信线程用来发送-接收用户正式消息(因为安全标准不允许在主APP线程中运行延时网络操作) { @Override //说明下面公有函数是从父类mButtonListener继承而来,重写run()函数就是新创建线程程序部分 public void run() //定义新线程中运行的发送+接收客户正式消息子函数run { AtomicReference<String> serverinfo = new AtomicReference<>(); //新建结构化输入流(字符串)操作对象serverinfo,可被多个线程操作引用 serverinfo.set(new String(buf, 0, length, StandardCharsets.UTF_8)); //获取buf中字节数据,转换结构化字符串(并放在输入流对象serverinfo中) } }; thread1.start(); //*启动thread1通信子线程* String base64String = "" 将Base64编码字符串解码成Bitmap图片(对象) String outputStr = ""; if (base64String.contains("data:image/png;base64,")) { 移除前缀 voutputStr = base64String.replace("data:image/png;base64,", ""); //去除指定前缀 } byte[] decodedString = Base64.decode(base64String, Base64.DEFAULT); 显示字符个数 textdx1.setText("字符个数为:" + base64String.length() + ",已经移除前缀: "+ base64String); Bitmap decodedByte = BitmapFactory.decodeByteArray(decodedString, 0, decodedString.length); //显示ImageView图片 tpczrq.setImageBitmap(decodedByte); }
最新发布
06-10

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值