2024-04-01 代码随想录

代码随想录算法训练营day27 | 题目39、题目40、题目131


题目一描述

39. 组合总和

给你一个 无重复元素 的整数数组 candidates 和一个目标整数 target ,找出 candidates 中可以使数字和为目标数 target 的 所有 不同组合 ,并以列表形式返回。你可以按 任意顺序 返回这些组合。

candidates 中的 同一个 数字可以 无限制重复被选取 。如果至少一个数字的被选数量不同,则两种组合是不同的。

对于给定的输入,保证和为 target 的不同组合数少于 150 个。

示例 1:

输入:candidates = [2,3,6,7], target = 7
输出:[[2,2,3],[7]]
解释:
2 和 3 可以形成一组候选,2 + 2 + 3 = 7 。注意 2 可以使用多次。
7 也是一个候选, 7 = 7 。
仅有这两种组合。
示例 2:

输入: candidates = [2,3,5], target = 8
输出: [[2,2,2,2],[2,3,3],[3,5]]
示例 3:

输入: candidates = [2], target = 1
输出: []

提示:

1 <= candidates.length <= 30
2 <= candidates[i] <= 40
candidates 的所有元素 互不相同
1 <= target <= 40

解题思路

在求和问题中,排序之后加剪枝是常见的套路。
如果解集不能包含重复的组合,i就从startIndex开始,如果是不同的集合,就从0开始,类似电话号码。
如果每个元素可以用无限次,循环里的startIndex就传递i,如果只能用一次,就传递i+1.

代码实现

方法一:

class Solution {
    public List<List<Integer>> combinationSum(int[] candidates, int target) {
        List<List<Integer>> res = new ArrayList<>();
        List<Integer> path = new ArrayList<>();
        Arrays.sort(candidates); // 排序方便后面剪枝
        backtracking(path, res, candidates, target, 0, 0);
        return res;
    }

    private void backtracking(List<Integer> path, List<List<Integer>> res, int[] candidates, int target,
            int sum, int startIndex) {
        if (sum == target) {
            res.add(new ArrayList<>(path));
            return;
        }
        for (int i = startIndex; i < candidates.length; i++) {
            sum += candidates[i];
            if (sum > target) { // 只有在候选集合升序的时候放在回溯前合适,本层后续循环都不用进入了。
                break; // 后面的元素都会大,所以直接跳出循环。break和return都一样。
            }
            path.add(candidates[i]);
            backtracking(path, res, candidates, target, sum, i);
            sum -= candidates[i];
            path.remove(path.size() - 1);
        }
    }

}

题目二描述

40. 组合总和 II

给定一个候选人编号的集合 candidates 和一个目标数 target ,找出 candidates 中所有可以使数字和为 target 的组合。

candidates 中的每个数字在每个组合中只能使用 一次 。

注意:解集不能包含重复的组合。

示例 1:
输入: candidates = [10,1,2,7,6,1,5], target = 8,
输出:
[
[1,1,6],
[1,2,5],
[1,7],
[2,6]
]

示例 2:
输入: candidates = [2,5,2,1,2], target = 5,
输出:
[
[1,2,2],
[5]
]

提示:

1 <= candidates.length <= 100
1 <= candidates[i] <= 50
1 <= target <= 30

解题思路

依旧是排序后剪枝,注意每一层的相同元素只能使用一次,每一个树枝的重复元素可以用多次。
也可以用辅助数组,但是要注意理解里面元素true和false的状态代表的含义。

代码实现

方法一:

class Solution {
    public List<List<Integer>> combinationSum2(int[] candidates, int target) {
        List<List<Integer>> res = new ArrayList<>();
        List<Integer> path = new ArrayList<>();
        Arrays.sort(candidates);
        backtracking(candidates, res, path, target, 0, 0);
        return res;
    }

    private void backtracking(int[] candidates, List<List<Integer>> res, List<Integer> path, int target, int startIndex,
            int sum) {
        if (sum == target) {
            res.add(new ArrayList<>(path));
            return;
        }
        for (int i = startIndex; i < candidates.length; i++) {
            // 保证了每层的这个数只能用一次,因为每层第一次使用时 i = startIndex
           // 这里是树层去重
            if (i > startIndex && candidates[i] == candidates[i - 1]) { 
                continue;
            }
            sum += candidates[i];
            if (sum > target) {
                return;
            }
            path.add(candidates[i]);
            backtracking(candidates, res, path, target, i + 1, sum);  // 这里是树枝去重,去的是自己
            sum -= candidates[i];
            path.remove(path.size() - 1);
        }
    }
}

方法二:

class Solution {
    boolean[] used;

    public List<List<Integer>> combinationSum2(int[] candidates, int target) {
        used = new boolean[candidates.length];
        List<List<Integer>> res = new ArrayList<>();
        List<Integer> path = new ArrayList<>();
        Arrays.sort(candidates);
        backtracking(candidates, res, path, target, 0, 0);
        return res;
    }

    private void backtracking(int[] candidates, List<List<Integer>> res, List<Integer> path, int target, int startIndex,
            int sum) {
        if (sum == target) {
            res.add(new ArrayList<>(path));
            return;
        }
        for (int i = startIndex; i < candidates.length; i++) {
            // used[i - 1] == true,说明同一树枝candidates[i - 1]使用过
            // used[i - 1] == false,说明同一树层candidates[i - 1]使用过
            // 这里是树层去重
            if (i > 0 && candidates[i] == candidates[i - 1] && !used[i - 1]) {
                continue;
            }
            sum += candidates[i];
            if (sum > target) {
                return;
            }
            path.add(candidates[i]);
            used[i] = true;

            backtracking(candidates, res, path, target, i + 1, sum);  // 这里是树枝去重,去的是自己
            sum -= candidates[i];
            path.remove(path.size() - 1);
            // 因为这里会再次置为false,同层下一个就知道false是使用过了,同一树枝还是true。
            used[i] = false;

        }
    }
}

题目三描述

131. 分割回文串

给你一个字符串 s,请你将 s 分割成一些子串,使每个子串都是 回文串(回文串是向前和向后读都相同的字符串)。返回 s 所有可能的分割方案。

示例 1:

输入:s = "aab"
输出:[["a","a","b"],["aa","b"]]
示例 2:

输入:s = "a"
输出:[["a"]]

提示:

1 <= s.length <= 16
s 仅由小写英文字母组成

解题思路

也是回溯,可以每次传切割好的字符串,然后对长度进行遍历回溯。
也可以传要切割的初始位置,这样操作子串的次数比较少。

代码实现

方法一:

class Solution {
    public List<List<String>> partition(String s) {
        List<List<String>> res = new ArrayList<>();
        List<String> subStrings = new ArrayList<>();
        backtracking(s, res, subStrings);
        return res;
    }

    private void backtracking(String s, List<List<String>> res, List<String> subStrings) {
        if (s.length() == 0) {
            res.add(new ArrayList<>(subStrings));
            return;
        }
        for (int length = 1; length <= s.length(); length++) {
            String subString = s.substring(0, length);
            if (check(subString)) {
                subStrings.add(subString);
                String rightSub = s.substring(length, s.length());  // 切完剩下的子串
                backtracking(rightSub, res, subStrings);
                subStrings.remove(subStrings.size() - 1);
            } else {
                continue; // continue就是这一个树枝都不行了,return或者break就是这一层都不行了。
            }
        }
    }

    private boolean check(String s) {
        int start = 0;
        int end = s.length() - 1;
        while (start < end) {
            if (s.charAt(start++) != s.charAt(end--)) {
                return false;
            }
        }
        return true;
    }
}

方法二:

class Solution {
    public List<List<String>> partition(String s) {
        List<List<String>> res = new ArrayList<>();
        List<String> subStrings = new ArrayList<>();
        backtracking(s, res, subStrings, 0);
        return res;
    }

    private void backtracking(String s, List<List<String>> res, List<String> subStrings, int startIndex) {
        if (startIndex == s.length()) {
            res.add(new ArrayList<>(subStrings));
            return;
        }
        for (int i = startIndex; i < s.length(); i++) { // 本质上也是在遍历长度,只不过隐含了划分子串的操作
            if (check(s, startIndex, i)) {
                String subString = s.substring(startIndex, i + 1); // 放在里面减少操作次数
                subStrings.add(subString);
                backtracking(s, res, subStrings, i + 1); // 传递切完剩下的子串的开始下标
                subStrings.remove(subStrings.size() - 1);
            } else {
                continue; // continue就是进入本层的下一个树枝分叉点,return或者break就是这一层都不行了,返回上一层。
            }
        }
    }

    private boolean check(String s, int start, int end) {
        while (start < end) {
            if (s.charAt(start++) != s.charAt(end--)) {
                return false;
            }
        }
        return true;
    }
}

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 214,172评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,346评论 3 389
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,788评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,299评论 1 288
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,409评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,467评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,476评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,262评论 0 269
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,699评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,994评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,167评论 1 343
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,827评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,499评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,149评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,387评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,028评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,055评论 2 352

推荐阅读更多精彩内容