gpt4 book ai didi

java - 通过回溯分d步完成n个作业

转载 作者:搜寻专家 更新时间:2023-11-01 02:58:30 26 4
gpt4 key购买 nike

我有几组任务,每组是一个任务链,组之间是相互独立的。组内的任务只能按照该组链确定的顺序进行处理。

每个任务都有一个 ID 和一个成本。任务是原子的,它们只能通过投入与其成本相等的时间单位来立即完成(不可能解决一半的任务)。在每一步的开头都有 m可用的时间单位。

我想检查是否可以在给定的步骤数内完成所有任务 d .

这里有一些图片来说明情况,每个任务都是一个二元组(ID,Cost),链中的任务只能从左到右解决。

这是将 6 个任务分成 3 组的图形示例:

6 tasks, 3 groups

假设m = 5 (每个步骤有 5 个时间单位可用)并且 d = 4 (我们想检查是否所有任务都可以在 4 个步骤内完成)。一个可能的解决方案是:

4 Step solution

另一种可能的解决方案是:

Another 4 step solution

一个无效的解决方案是(它在 5 个步骤中完成所有任务,我们说限制是 4):

An invalid 5 step solution

我的问题:

对于给定的:

  • 分组的任务
  • 一些时间单位m每一步都可用
  • 和一些步骤d哪些是允许的

确定是否有可能在 d 内解决所有任务步骤,如果是这样,则输出一个可能的序列(任务 ID),其中可以解决任务,使得 <= d步骤完成。

我目前的做法:

我尝试通过回溯找到解决方案。我创建了一个双端队列列表来对组建模,然后我查看集合 A(当前步骤中可以解决的所有任务,每个组的最左边的元素)并找到所有子集 B(A 的子集,其总和为成本是 <= d 并且没有其他任务可以添加到其中,使得成本总和保持 <= d )。集合 B 的子集代表我在当前步骤中考虑解决的任务,现在每个子集代表一个选择,我对它们中的每一个进行递归调用(以探索每个选择),我在其中传递没有 B 中元素的双端队列列表(我将它们从双端队列中删除,因为从现在开始我认为它们在递归的这个分支中得到解决)。一旦递归深度为 > d,递归调用就会停止。 (超出允许的步数)或找到解决方案(双端队列列表为空,所有任务已在 <= d 步内解决)。

伪Javaish代码:

// sequence[1] = j means that task 1 is done at step j
// the param steps is used to track the depth of recursion
findValidSequence (ArrayList<Deque> groups, int[] sequence, int steps) {

if (steps > d) // stop this branch since it exceeds the step limit d

if (groups.isEmpty()) // 0 tasks left, a solution is found, output sequence

Set A = getAllTasksSolvableDuringCurrentStep();

Set B = determineAllTheOptionsForTheNextStep(A);

// make a recursive call for each option to check if any of them leads to a valid sequence
for (each element in B)
findValidSequence(groups.remove(B), sequence.setSolvedTasks(B), steps+1);


}

我在尝试正确实现时迷失了方向,您如何看待我的方法,您将如何解决这个问题?

注意:

这个问题非常普遍,因为很多调度问题(m 机器和 n 优先约束作业)都可以归结为这样的问题。

最佳答案

这里有一个计算B的建议。这是一个很好的观察,它归结为“给定一个整数数组,找到所有子集,其总和为 <= m,并且我们不能从数组中添加任何其他元素,使得 <= m 不被违反”。所以我只解决了这个更简单的问题,并相信您会根据自己的情况采用该解决方案。

正如我在评论中所说,我正在使用递归。每个递归调用都会查看 A 中的一个元素,并尝试使用该元素的解决方案和不使用该元素的解决方案。

在递归方法的每次调用中,我传递 Am,它们在每次调用中都是相同的。为了方便起见,我通过了一个部分解决方案,告诉您先前考虑的哪些元素包含在当前正在构建的子集中,以及包含的元素的总和。

/**
* Calculates all subsets of a that have a sum <= capacity
* and to which one cannot add another element from a without exceeding the capacity.
* @param a elements to put in sets;
* even when two elements from a are equal, they are considered distinct
* @param capacity maximum sum of a returned subset
* @return collection of subsets of a.
* Each subset is represented by a boolean array the same length as a
* where true means that the element in the same index in a is included,
* false that it is not included.
*/
private static Collection<boolean[]> maximalSubsetsWithinCapacity(int[] a, int capacity) {
List<boolean[]> b = new ArrayList<>();
addSubsets(a, capacity, new boolean[0], 0, Integer.MAX_VALUE, b);
return b;
}

/** add to b all allowed subsets where the the membership for the first members of a is determined by paritalSubset
* and where remaining capacity is smaller than smallestMemberLeftOut
*/
private static void addSubsets(int[] a, int capacity, boolean[] partialSubset, int sum,
int smallestMemberLeftOut, List<boolean[]> b) {
assert sum == IntStream.range(0, partialSubset.length)
.filter(ix -> partialSubset[ix])
.map(ix -> a[ix])
.sum()
: Arrays.toString(a) + ' ' + Arrays.toString(partialSubset) + ' ' + sum;
int remainingCapacity = capacity - sum;
if (partialSubset.length == a.length) { // done
// check capacity constraint: if there’s still room for a member of size smallestMemberLeftOut,
// we have violated the maximality constraint
if (remainingCapacity < smallestMemberLeftOut) { // OK, no more members could have been added
b.add(partialSubset);
}
} else {
// try next element from a.
int nextElement = a[partialSubset.length];
// i.e., decide whether should be included.
// try with and without.

// is including nextElement a possibility?
if (nextElement <= remainingCapacity) { // yes
boolean[] newPartialSubset = Arrays.copyOf(partialSubset, partialSubset.length + 1);
newPartialSubset[partialSubset.length] = true; // include member
addSubsets(a, capacity, newPartialSubset, sum + nextElement, smallestMemberLeftOut, b);
}

// try leaving nextElement out
boolean[] newPartialSubset = Arrays.copyOf(partialSubset, partialSubset.length + 1);
newPartialSubset[partialSubset.length] = false; // exclude member
int newSmallestMemberLeftOut = smallestMemberLeftOut;
if (nextElement < smallestMemberLeftOut) {
newSmallestMemberLeftOut = nextElement;
}
addSubsets(a, capacity, newPartialSubset, sum, newSmallestMemberLeftOut, b);
}

有几个地方有点棘手。我希望我的评论能帮助你度过难关。否则请询问。

让我们试试看:

    int[] a = { 5, 1, 2, 6 };
Collection<boolean[]> b = maximalSubsetsWithinCapacity(a, 8);
b.forEach(ba -> System.out.println(Arrays.toString(ba)));

此代码打印:

[true, true, true, false]
[false, true, false, true]
[false, false, true, true]
  • [true, true, true, false]表示5、1、2的子集,和为8,所以正好符合8的容量(m).
  • [false, true, false, true] 表示 1 和 6,总和为 7,不能加 2 否则会超出容量
  • 最后 [false, false, true, true] 表示 2 和 6,也正好符合容量 m

我相信这已经用尽了您限制范围内的可能性。

关于java - 通过回溯分d步完成n个作业,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44653438/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com