【leetcode】1422. 分割字符串的最大得分

文章目录

题目

1422. 分割字符串的最大得分

给你一个由若干 0 和 1 组成的字符串 s ,请你计算并返回将该字符串分割成两个 非空 子字符串(即 左 子字符串和 右 子字符串)所能获得的最大得分。

「分割字符串的得分」为 左 子字符串中 0 的数量加上 右 子字符串中 1 的数量。

示例 1:

输入:s = "011101"

输出:5

解释:

将字符串 s 划分为两个非空子字符串的可行方案有:

左子字符串 = "0" 且 右子字符串 = "11101",得分 = 1 + 4 = 5

左子字符串 = "01" 且 右子字符串 = "1101",得分 = 1 + 3 = 4

左子字符串 = "011" 且 右子字符串 = "101",得分 = 1 + 2 = 3

左子字符串 = "0111" 且 右子字符串 = "01",得分 = 1 + 1 = 2

左子字符串 = "01110" 且 右子字符串 = "1",得分 = 2 + 1 = 3

示例 2:

输入:s = "00111"

输出:5

解释:当 左子字符串 = "00" 且 右子字符串 = "111" 时,我们得到最大得分 = 2 + 3 = 5

示例 3:

输入:s = "1111"

输出:3

题解

python 复制代码
class Solution(object):
    def maxScore(self, s):
        """
        :type s: str
        :rtype: int
        """
        ans = 0
        
        for i in range(1, len(s)):
            score = 0
            for s1 in s[:i]:
                if s1 == '0':
                    score += 1
            for s2 in s[i:]:
                if s2 == '1':
                    score += 1
            ans = max(ans, score)
        return ans
        
相关推荐
未知陨落15 分钟前
LeetCode:62.N皇后
算法·leetcode
こ进制掌控者26 分钟前
Ubuntu server 24.04.3 设置静态IP
linux·tcp/ip·ubuntu
程序员小董1 小时前
关于Unix Domain Socket的使用入门
服务器·unix
zuoyou-HPU1 小时前
QT中的pyodbc.connect()函数
服务器·数据库·oracle
泡沫冰@1 小时前
shell编程:sed - 流编辑器(5)
linux
songx_991 小时前
leetcode(填充每个节点的下一个右侧节点指针 II)
java·数据结构·算法·leetcode
xiaguangbo2 小时前
rust slint android 安卓
android·linux·rust
晓梦初醒p2 小时前
finalshell 连接服务器报错channel is not opened
linux·运维·服务器
准时准点睡觉2 小时前
HTTP 错误 403.14 - Forbidden Web 服务器被配置为不列出此目录的内容——错误代码:0x00000000
运维·服务器·iis·asp.net
cpsvps3 小时前
环境变量管理于美国服务器多环境部署的实施标准
运维·服务器·数据库