- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在一次采访中被问到这个问题。给定一个整数数组(具有正值和负值),我们需要找到具有相等和的不相交子数组的最大数量。
示例:
输入:[1, 2, 3]输出:2 {因为我们最多有 2 个总和 = 3 的子数组,即 [1, 2],[3]}
输入:[2 2 2 -2]输出:2 {两个子数组,每个子数组总和 = 2 即 [2],[2, 2, -2]}
我的方法
我想到的第一个方法是找到前缀和数组,然后以每个元素 (prefix[i]) 为目标,找到 sum = prefix[i] 的子数组的数量。
但这在负数的情况下失败了。负面情况如何处理?
EDIT 完整的数组必须被这些子数组覆盖。这就是为什么在示例 2 中我们得到 2 作为输出而不是 3 ([2],[2],[2])。
最佳答案
首先,假设它们可以是不连续的元素
可能没有有效的算法(如果是,P=NP),那么,简单检查所有可能的组合(分区)。
如果 partitions
是一个返回给定集合的所有分区的函数,那么您的问题通过以下方式解决:
static Optional<List<List<Integer>>> maximumSubarraysEqSum(List<Integer> xs) {
return
// all indexes partitions
partitions(IntStream.range(0, xs.size()).mapToObj(x -> x).collect(toList()))
// with all groups with same sum
.stream().filter(zs -> zs.stream().mapToInt(ys -> ys.stream().mapToInt(xs::get).sum()).distinct().count() == 1L)
// sorting by size desc
.sorted((zs, ys) -> Integer.compare(ys.size(), zs.size()))
// first (or all with same size if you want, ...)
.findFirst()
// map indexes to values
.map(zs -> zs.stream().map(ys -> ys.stream().map(xs::get).collect(toList())).collect(toList()));
}
运行
public static void main(String... args) {
System.out.println(" " + maximumSubarraysEqSum(List.of(1, 2, 3)));
System.out.println(" " + maximumSubarraysEqSum(List.of(2, 2, 2, -2)));
System.out.println(" " + maximumSubarraysEqSum(List.of(3, 4)));
}
输出是
Optional[[[1, 2], [3]]]
Optional[[[2, 2, -2], [2]]]
Optional[[[3, 4]]]
其次,假设它们必须是连续的元素
第一个子数组设置什么总和是可能的,然后对于每个可能的“第一个总和”我们检查组数
static int maxSubarrayEqSum(List<Integer> xs) {
// possible sizes for the first subarray
return IntStream.range(1, xs.size() + 1)
// with that sum count (if exists) how many subarrays match
.map(sz -> countMaxSubArrayEqSum(0, xs, xs.stream().limit(sz).mapToInt(x -> x).sum()))
// get the maximum number
.max()
.getAsInt();
}
计算最大子数组得到第一个可能的和
static int countMaxSubArrayEqSum(int from, List<Integer> xs, int sz) {
int acc = 0;
for(int i = from; i < xs.size(); i++) {
acc += xs.get(i);
if(acc == sz) {
if(i == xs.size() - 1)
return 1;
int count = countMaxSubArrayEqSum(i + 1, xs, sz);
if(count > 0)
return count + 1;
}
}
return 0;
}
连续序列O(n^2)的最优解
而不是回溯,我们可以得到 maxSplit
值(组的最大值)检查 xs
是否可以除以 |xs|
,|xs|-1
、|xs|-2
、...、1
组。
static int maxSplit(int [] xs) {
// sum all
int S = 0;
for(int i = 0; i < xs.length; i++)
S += xs[i];
// try every possible number of groups
for(int i = xs.length; i > 1; i--)
if(S % i == 0 && maxSplitFit(xs, i, S / i))
return i;
return 1;
}
xs
如果我们可以使用贪婪的策略,可以分为 k
组
static boolean maxSplitFit(int [] xs, int k, int s) {
int groupsCount = 1;
int acc = 0;
// look for (not final) groups summing S/k
int i = 0;
while(i < xs.length - 1 && groupsCount < k) {
acc += xs[i];
if ((s == 0 && acc == 0) // divide by 0
|| (s != 0 && s * groupsCount == acc)) // S/k
groupsCount++;
i++;
}
// if there are not enough groups then it is not possible
if(groupsCount != k)
return false;
// the last group must contains all remaining elements
while(i < xs.length)
acc += xs[i++];
// S/k for every group
return s * k == acc;
}
一边
获取所有分区的可能函数是
static <T> List<List<List<T>>> partitions(List<T> set) {
// last element
T element = set.get(set.size() - 1);
if (set.size() == 1)
return singletonList(singletonList(singletonList(element)));
List<List<List<T>>> current = new ArrayList<>();
// it could be in any of previous groups or in a new one
// add on every previous
for (List<List<T>> p : partitions(set.subList(0, set.size() - 1))) {
// every candidate group to place
for (int i = 0; i < p.size(); i++) {
List<List<T>> b = new ArrayList<>(p);
b.add(i, new ArrayList<>(b.remove(i)));
b.get(i).add(element);
current.add(b);
}
// add singleton
List<List<T>> b = new ArrayList<>(p);
b.add(singletonList(element));
current.add(b);
}
return current;
}
关于java - 总和相等的子数组的最大数量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/71007096/
我正在尝试创建一个包含 int[][] 项的数组 即 int version0Indexes[][4] = { {1,2,3,4}, {5,6,7,8} }; int version1Indexes[
我有一个整数数组: private int array[]; 如果我还有一个名为 add 的方法,那么以下有什么区别: public void add(int value) { array[va
当您尝试在 JavaScript 中将一个数组添加到另一个数组时,它会将其转换为一个字符串。通常,当以另一种语言执行此操作时,列表会合并。 JavaScript [1, 2] + [3, 4] = "
根据我正在阅读的教程,如果您想创建一个包含 5 列和 3 行的表格来表示这样的数据... 45 4 34 99 56 3 23 99 43 2 1 1 0 43 67 ...它说你可以使用下
我通常使用 python 编写脚本/程序,但最近开始使用 JavaScript 进行编程,并且在使用数组时遇到了一些问题。 在 python 中,当我创建一个数组并使用 for x in y 时,我得
我有一个这样的数组: temp = [ 'data1', ['data1_a','data1_b'], ['data2_a','data2_b','data2_c'] ]; // 我想使用 toStr
rent_property (table name) id fullName propertyName 1 A House Name1 2 B
这个问题在这里已经有了答案: 关闭13年前。 Possible Duplicate: In C arrays why is this true? a[5] == 5[a] array[index] 和
使用 Excel 2013。经过多年的寻找和适应,我的第一篇文章。 我正在尝试将当前 App 用户(即“John Smith”)与他的电子邮件地址“jsmith@work.com”进行匹配。 使用两个
当仅在一个边距上操作时,apply 似乎不会重新组装 3D 数组。考虑: arr 1),但对我来说仍然很奇怪,如果一个函数返回一个具有尺寸的对象,那么它们基本上会被忽略。 最佳答案 这是一个不太理
我有一个包含 GPS 坐标的 MySQL 数据库。这是我检索坐标的部分 PHP 代码; $sql = "SELECT lat, lon FROM gps_data"; $stmt=$db->query
我需要找到一种方法来执行这个操作,我有一个形状数组 [批量大小, 150, 1] 代表 batch_size 整数序列,每个序列有 150 个元素长,但在每个序列中都有很多添加的零,以使所有序列具有相
我必须通过 url 中的 json 获取文本。 层次结构如下: 对象>数组>对象>数组>对象。 我想用这段代码获取文本。但是我收到错误 :org.json.JSONException: No valu
enter code here- (void)viewDidLoad { NSMutableArray *imageViewArray= [[NSMutableArray alloc] init];
知道如何对二维字符串数组执行修剪操作,例如使用 Java 流 API 进行 3x3 并将其收集回相同维度的 3x3 数组? 重点是避免使用显式的 for 循环。 当前的解决方案只是简单地执行一个 fo
已关闭。此问题需要 debugging details 。目前不接受答案。 编辑问题以包含 desired behavior, a specific problem or error, and the
我有来自 ASP.NET Web 服务的以下 XML 输出: 1710 1711 1712 1713
如果我有一个对象todo作为您状态的一部分,并且该对象包含数组列表,则列表内部有对象,在这些对象内部还有另一个数组listItems。如何更新数组 listItems 中 id 为“poi098”的对
我想将最大长度为 8 的 bool 数组打包成一个字节,通过网络发送它,然后将其解压回 bool 数组。已经在这里尝试了一些解决方案,但没有用。我正在使用单声道。 我制作了 BitArray,然后尝试
我们的数据库中有这个字段指示一周中的每一天的真/假标志,如下所示:'1111110' 我需要将此值转换为 boolean 数组。 为此,我编写了以下代码: char[] freqs = weekday
我是一名优秀的程序员,十分优秀!