image.png
泪目,刷新最好排名,第一次拿到Leetcode的奖品

5234. 移除字母异位词后的结果数组

给你一个下标从 0 开始的字符串 words ,其中 words[i] 由小写英文字符组成。
在一步操作中,需要选出任一下标 i ,从 words 中 删除 words[i] 。其中下标 i 需要同时满足下述两个条件:

  1. 0 < i < words.length
  2. words[i - 1] 和 words[i] 是 字母异位词

只要可以选出满足条件的下标,就一直执行这个操作。
在执行所有操作后,返回 words 。可以证明,按任意顺序为每步操作选择下标都会得到相同的结果。
字母异位词 是由重新排列源单词的字母得到的一个新单词,所有源单词中的字母通常恰好只用一次。例如,”dacb” 是 “abdc” 的一个字母异位词。

示例 1:
输入:words = [“abba”,”baba”,”bbaa”,”cd”,”cd”] 输出:[“abba”,”cd”] 解释: 获取结果数组的方法之一是执行下述步骤: - 由于 words[2] = “bbaa” 和 words[1] = “baba” 是字母异位词,选择下标 2 并删除 words[2] 。 现在 words = [“abba”,”baba”,”cd”,”cd”] 。 - 由于 words[1] = “baba” 和 words[0] = “abba” 是字母异位词,选择下标 1 并删除 words[1] 。 现在 words = [“abba”,”cd”,”cd”] 。 - 由于 words[2] = “cd” 和 words[1] = “cd” 是字母异位词,选择下标 2 并删除 words[2] 。 现在 words = [“abba”,”cd”] 。 无法再执行任何操作,所以 [“abba”,”cd”] 是最终答案。
示例 2:
输入:words = [“a”,”b”,”c”,”d”,”e”] 输出:[“a”,”b”,”c”,”d”,”e”] 解释: words 中不存在互为字母异位词的两个相邻字符串,所以无需执行任何操作。

提示:

  • 1 <= words.length <= 100
  • 1 <= words[i].length <= 10
  • words[i] 由小写英文字母组成

思路:
模拟

  1. class Solution {
  2. public List<String> removeAnagrams(String[] words) {
  3. List<String> res = new ArrayList<>();
  4. for (String s : words) {
  5. if (!res.isEmpty()) {
  6. String t = res.get(res.size() - 1);
  7. if (!check(s, t)) {
  8. res.add(s);
  9. }
  10. } else {
  11. res.add(s);
  12. }
  13. }
  14. return res;
  15. }
  16. boolean check(String s, String t) {
  17. if (s.length() != t.length())
  18. return false;
  19. char[] c1 = s.toCharArray();
  20. char[] c2 = t.toCharArray();
  21. Arrays.sort(c1);
  22. Arrays.sort(c2);
  23. for (int i = 0; i < c1.length; i++)
  24. if (c1[i] != c2[i])
  25. return false;
  26. return true;
  27. }
  28. }

6064. 不含特殊楼层的最大连续楼层数

Alice 管理着一家公司,并租用大楼的部分楼层作为办公空间。Alice 决定将一些楼层作为 特殊楼层 ,仅用于放松。
给你两个整数 bottom 和 top ,表示 Alice 租用了从 bottom 到 top(含 bottom 和 top 在内)的所有楼层。另给你一个整数数组 special ,其中 special[i] 表示 Alice 指定用于放松的特殊楼层。
返回不含特殊楼层的 最大 连续楼层数。

示例 1:
输入:bottom = 2, top = 9, special = [4,6] 输出:3 解释:下面列出的是不含特殊楼层的连续楼层范围: - (2, 3) ,楼层数为 2 。 - (5, 5) ,楼层数为 1 。 - (7, 9) ,楼层数为 3 。 因此,返回最大连续楼层数 3 。
示例 2:
输入:bottom = 6, top = 8, special = [7,6,8] 输出:0 解释:每层楼都被规划为特殊楼层,所以返回 0 。

提示

  • 1 <= special.length <= 105
  • 1 <= bottom <= special[i] <= top <= 109
  • special 中的所有值 互不相同

思路:
模拟

  1. class Solution {
  2. public int maxConsecutive(int bottom, int top, int[] special) {
  3. Arrays.sort(special);
  4. int pre = bottom - 1;
  5. int max = 0;
  6. for (int x : special) {
  7. max = Math.max(max, x - pre - 1);
  8. pre = x;
  9. }
  10. max = Math.max(max, top - pre);
  11. return max;
  12. }
  13. }

6065. 按位与结果大于零的最长组合

对数组 nums 执行 按位与 相当于对数组 nums 中的所有整数执行 按位与

  • 例如,对 nums = [1, 5, 3] 来说,按位与等于 1 & 5 & 3 = 1 。
  • 同样,对 nums = [7] 而言,按位与等于 7 。

给你一个正整数数组 candidates 。计算 candidates 中的数字每种组合下 按位与 的结果。 candidates 中的每个数字在每种组合中只能使用 一次
返回按位与结果大于 0 的 最长 组合的长度

示例 1:
输入:candidates = [16,17,71,62,12,24,14] 输出:4 解释:组合 [16,17,62,24] 的按位与结果是 16 & 17 & 62 & 24 = 16 > 0 。 组合长度是 4 。 可以证明不存在按位与结果大于 0 且长度大于 4 的组合。 注意,符合长度最大的组合可能不止一种。 例如,组合 [62,12,24,14] 的按位与结果是 62 & 12 & 24 & 14 = 8 > 0 。
示例 2:
输入:candidates = [8,8] 输出:2 解释:最长组合是 [8,8] ,按位与结果 8 & 8 = 8 > 0 。 组合长度是 2 ,所以返回 2 。

提示:

  • 1 <= candidates.length <= 105
  • 1 <= candidates[i] <= 107

思路:
按位运算

  1. class Solution {
  2. public int largestCombination(int[] c) {
  3. int max = 0;
  4. for (int i = 0; i < 24; i++) {
  5. int cnt = 0;
  6. for (int x : c)
  7. cnt += x >> i & 1;
  8. max = Math.max(max, cnt);
  9. }
  10. return max;
  11. }
  12. }

6066. 统计区间中的整数数目

给你区间的 集,请你设计并实现满足要求的数据结构:

  • 新增:添加一个区间到这个区间集合中。
  • 统计:计算出现在 至少一个 区间中的整数个数。

实现 CountIntervals 类:

  • CountIntervals() 使用区间的空集初始化对象
  • void add(int left, int right) 添加区间 [left, right] 到区间集合之中。
  • int count() 返回出现在 至少一个 区间中的整数个数。

注意:区间 [left, right] 表示满足 left <= x <= right 的所有整数 x 。

示例 1:
image.png

提示:

  • 1 <= left <= right <= 109
  • 最多调用 add 和 count 方法 总计 105 次
  • 调用 count 方法至少一次

思路:
区间问题
方法1:有序集和(平衡树)
分析时间复杂度:考虑每一个区间,只会被添加一次,删除一次,所以总时间复杂度为O(nlogn)
方法2:动态开点线段树

  1. class CountIntervals {
  2. class Interval implements Comparable<Interval> {
  3. int l, r;
  4. Interval(int l, int r) {
  5. this.l = l;
  6. this.r = r;
  7. }
  8. public int compareTo(Interval other) {
  9. return this.r - other.r;
  10. }
  11. }
  12. TreeSet<Interval> set = new TreeSet<>();
  13. int cnt = 0;
  14. public CountIntervals() {
  15. }
  16. public void add(int left, int right) {
  17. var iterator = set.tailSet(new Interval(left, left)).iterator();
  18. while (iterator.hasNext()) {
  19. var t = iterator.next();
  20. if (t.l > right) break;
  21. left = Math.min(left, t.l);
  22. right = Math.max(right, t.r);
  23. cnt -= t.r - t.l + 1;
  24. iterator.remove();
  25. }
  26. set.add(new Interval(left, right));
  27. cnt += right - left + 1;
  28. }
  29. public int count() {
  30. return cnt;
  31. }
  32. }
  33. /**
  34. * Your CountIntervals object will be instantiated and called as such:
  35. * CountIntervals obj = new CountIntervals();
  36. * obj.add(left,right);
  37. * int param_2 = obj.count();
  38. */
  1. class CountIntervals {
  2. class Interval {
  3. Interval left, right;
  4. int l, r;
  5. int sum;
  6. Interval(int l, int r) {
  7. this.l = l;
  8. this.r = r;
  9. }
  10. void add(int ll, int rr) {
  11. if (r - l + 1 == sum) return;
  12. if (ll <= l && rr >= r) {
  13. sum = r - l + 1;
  14. } else {
  15. int mid = l + r >> 1;
  16. if (left == null) left = new Interval(l, mid);
  17. if (right == null) right = new Interval(mid + 1, r);
  18. if (ll <= mid) left.add(ll, rr);
  19. if (rr > mid) right.add(ll, rr);
  20. sum = left.sum + right.sum;
  21. }
  22. }
  23. }
  24. Interval root = new Interval(1, (int)(1e9));
  25. public CountIntervals() {
  26. }
  27. public void add(int left, int right) {
  28. root.add(left, right);
  29. }
  30. public int count() {
  31. return root.sum;
  32. }
  33. }
  34. /**
  35. * Your CountIntervals object will be instantiated and called as such:
  36. * CountIntervals obj = new CountIntervals();
  37. * obj.add(left,right);
  38. * int param_2 = obj.count();
  39. */