659. Split Array into Consecutive Subsequences

You are given an integer array sorted in ascending order (may contain duplicates), you need to split them into several subsequences, where each subsequences consist of at least 3 consecutive integers. Return whether you can make such a split.

Example 1:

Input: [1,2,3,3,4,5]
Output: True
Explanation:
You can split them into two consecutive subsequences : 
1, 2, 3
3, 4, 5

 Example 2:

Input: [1,2,3,3,4,4,5,5]
Output: True
Explanation:
You can split them into two consecutive subsequences : 
1, 2, 3, 4, 5
3, 4, 5

 Example 3:

Input: [1,2,3,4,4,5]
Output: False

 Note:

  1. The length of the input is in range of [1, 10000]

含义:给定一个升序的数组,要求拆分出多个子数组,子数组至少要有3个元素,且是公差为1的递增序列

复制代码
 1     public boolean isPossible(int[] nums) {
 2         Map<Integer, Integer> cards = new HashMap<>();
 3         for (int i : nums) cards.put(i, cards.getOrDefault(i, 0) + 1);
 4         Map<Integer, Integer> map = new HashMap<>(); //key是已有的满足规则队列的下一个期待的数,value是满足规则的队列数,大于0才表示队列有效
 5         for (int i : nums) {
 6             if (cards.get(i) == 0) continue; // 这个数用完了
 7             if (map.getOrDefault(i, 0) > 0) {
 8                 // 加到已经有的队列
 9                 map.put(i, map.get(i) - 1);
10                 map.put(i + 1, map.getOrDefault(i + 1, 0) + 1);
11             } else if (cards.getOrDefault(i + 1, 0) > 0 && cards.getOrDefault(i + 2, 0) > 0) {
12                 // 取i,i+1,i+2这三个数,加到新的队列
13                 cards.put(i + 1, cards.get(i + 1) - 1);
14                 cards.put(i + 2, cards.get(i + 2) - 1);
15                 map.put(i + 3, map.getOrDefault(i + 3, 0) + 1);
16             } else return false; // 这个数无处容身
17             cards.put(i, cards.get(i) - 1);
18         }
19         return true;      
20     }
复制代码

 

posted @   daniel456  阅读(171)  评论(0编辑  收藏  举报
编辑推荐:
· AI与.NET技术实操系列:基于图像分类模型对图像进行分类
· go语言实现终端里的倒计时
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
阅读排行:
· 25岁的心里话
· 闲置电脑爆改个人服务器(超详细) #公网映射 #Vmware虚拟网络编辑器
· 基于 Docker 搭建 FRP 内网穿透开源项目(很简单哒)
· 零经验选手,Compose 一天开发一款小游戏!
· 一起来玩mcp_server_sqlite,让AI帮你做增删改查!!
点击右上角即可分享
微信分享提示