算法leetcode|LCP 17. 速算机器人(rust和go)

Posted 二当家的白帽子

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了算法leetcode|LCP 17. 速算机器人(rust和go)相关的知识,希望对你有一定的参考价值。


文章目录


LCP 17. 速算机器人:

小扣在秋日市集发现了一款速算机器人。店家对机器人说出两个数字(记作 xy),请小扣说出计算指令:

  • "A" 运算:使 x = 2 * x + y
  • "B" 运算:使 y = 2 * y + x

在本次游戏中,店家说出的数字为 x = 1y = 0,小扣说出的计算指令记作仅由大写字母 AB 组成的字符串 s,字符串中字符的顺序表示计算顺序,请返回最终 xy 的和为多少。

样例 1:

输入:
	s = "AB"

输出:
	4

解释:
	经过一次 A 运算后,x = 2, y = 0。
	再经过一次 B 运算,x = 2, y = 2。
	最终 x 与 y 之和为 4。

提示:

  • 0 <= s.length <= 10
  • s'A''B' 组成

分析

  • 面对这道算法题目,二当家的陷入了沉思。
  • 这道题看起来不难,直接照着题意模拟就行了。
  • 但是结果要的是xy 的和,并不需要知道xy分别是多少。
  • 无论是A操作(x = 2 * x + y)还是B操作(y = 2 * y + x),都会使得xy 的和(2 * x + y + yx + 2 * y + x)翻倍,所以只需要关心做了几次操作而已。


题解

rust

impl Solution 
    pub fn calculate(s: String) -> i32 
        1 << s.len()
    


go

func calculate(s string) int 
    return 1 << len(s)


typescript

function calculate(s: string): number 
    return 1 << s.length;
;

python

class Solution:
    def calculate(self, s: str) -> int:
        return 1 << len(s)


c

int calculate(char* s)
    return 1 << strlen(s);


c++

class Solution 
public:
    int calculate(string s) 
        return 1 << s.length();
    
;

java

class Solution 
    public int calculate(String s) 
        return 1 << s.length();
    


原题传送门:https://leetcode.cn/problems/nGK0Fy/


非常感谢你阅读本文~
欢迎【点赞】【收藏】【评论】~
放弃不难,但坚持一定很酷~
希望我们大家都能每天进步一点点~
本文由 二当家的白帽子:https://le-yi.blog.csdn.net/ 博客原创~


以上是关于算法leetcode|LCP 17. 速算机器人(rust和go)的主要内容,如果未能解决你的问题,请参考以下文章

算法leetcode|LCP 17. 速算机器人(rust和go)

LeetCodeLCP 17. 速算机器人(C++)

力扣1812,LCP17,2011,1876,520,709,1704,1844,1805题解

leetcode LCP 3. 机器人大冒险 java

LeetCode LCP 3 机器人大冒险

⭐算法入门⭐《二分枚举》简单14 —— LeetCode LCP 28. 采购方案