[leetcode]5392. 分割字符串的最大得分

  • 个人博客:https://javaniuniu.com/
  • 难度:中等
  • 本题涉及算法: 深度优先搜索(DFS)
  • 思路:分割字符串 线性扫描 深度优先搜索(DFS)
  • 类似题型:

题目 5392. 分割字符串的最大得分

给你一个由若干 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

提示:

2 <= s.length <= 500
字符串 s 仅由字符 '0' 和 '1' 组成。

解题思路一 分割字符串

代码
class Solution {
    public int maxScore(String s) {
        int zeroCount = count(s,"0",0);
        int oneCount = count(s,"1",1);
        int max = 0;
        for (int i=1;i<s.length();i++) {
            int zero = zeroCount -  count(s,"0",i);// 总0出现个数-后面0出现个数
            int one  = count(s,"1",i);// 后面1出现的个数
            max = Math.max(max,zero+one);
        }
        return max;
    }

    public int count(String str,String target,int fromIndex) {
        int count = 0;
        while (true){
            int index = str.indexOf(target,fromIndex);
            if (index!=-1) {
                fromIndex = index +1;
                count ++;
            }else {
                break;
            }
        }
        return count;
    }
}

解题思路二 java 线性扫描O(N)

代码
class Solution {
    public int maxScore(String s) {
        int res = 0, cnt1 = 0, cnt0 = 0;        //cnt1统计右边1的个数,同理cnt0左边0的个数
        for(int i = 0; i < s.length(); i++){
            cnt1 += s.charAt(i)-'0';            //先统计1的个数
        }                                       //由于左右区域的数至少为1,所以i不能等于len-1
        for(int i = 0; i < s.length()-1; i++){  //点i分为左右两个区域        
            if(s.charAt(i) == '0') cnt0++;      //遇到01就统计,动态更新左右区域01个数
            else cnt1--;
            res = Math.max(res, cnt0+cnt1);
        }
        return res;

    }

}

解题思路三 深度优先搜索(DFS)

从最开始的节点出发,要么选左,要么选右,选择了一边之后如果还能选,那再继续上述过程,这不就是一棵树,然后就按dfs写的,但在用例较长的情况下超时了,只通过了 15/40 的样例。思路1只是提供一种思考的思路,耗时过多,没法通过本题。

public int maxScoredfs(int[] cardPoints, int k) {
        int max = 0;
        if (k == cardPoints.length) {
            for (int num : cardPoints) {
                max += num;
            }
        }

        int scores = 0;
        max = dfscard(cardPoints, k, 0, cardPoints.length - 1, scores);

        return max;
    }

    public int dfscard(int[] cardPoints, int k, int l, int r, int scores) {
        if (k == 1) // 边界条件,只能选一次的话,就选左或者右中的较大者
            return Math.max(cardPoints[l], cardPoints[r]);
        int l_max = dfscard(cardPoints, k - 1, l + 1, r, scores) + cardPoints[l];// 选择左边的情况,并继续向下dfs
        int r_max = dfscard(cardPoints, k - 1, l, r - 1, scores) + cardPoints[r];// 选择右边的情况,并继续向下dfs
        return Math.max(l_max, r_max); // 返回选左或者选右的较大者
    }
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值