【问题标题】:knapsack with google or-tools (c#)带有谷歌或工具的背包(c#)
【发布时间】:2016-06-16 10:51:12
【问题描述】:

我正在尝试使用 google-or 工具来实现具有 3 个约束的背包问题。 假设我想为每个项目添加一个名为 size 的附加属性。所以每个项目都有 3 个属性,我必须最大化项目的总价值。

KnapsackSolver k = new KnapsackSolver(KnapsackSolver.KNAPSACK_DYNAMIC_PROGRAMMING_SOLVER, "mybin");
        long[, ,] profits = { {{ 10,20,30} ,{40,50,60}} };
        long[,] weights = {{44,21}};
        long[] capa = { 110 };
        k.Init(profits, weights, capa);

但它不会去任何地方。有人可以纠正我吗?

【问题讨论】:

  • 你试过k.Solve()吗?会发生什么?
  • 不,我没有。导致k.Init(profits, weights, capa);这行代码显示错误。
  • "这行代码显示错误。" -> 这是什么意思?你有没有编译错误?错误是什么?如果您想获得帮助,您必须提供更多详细信息。
  • 它说参数列表无效

标签: c# optimization knapsack-problem bin-packing or-tools


【解决方案1】:

https://github.com/google/or-tools/blob/stable/examples/dotnet/csknapsack.cs

long[] profits = { 360, 83, 59, 130, 431, 67, 230, 52, 93,
                   125, 670, 892, 600, 38, 48, 147, 78, 256,
                   63, 17, 120, 164, 432, 35, 92, 110, 22,
                   42, 50, 323, 514, 28, 87, 73, 78, 15,
                   26, 78, 210, 36, 85, 189, 274, 43, 33,
                   10, 19, 389, 276, 312 };

long[,] weights = { { 7, 0, 30, 22, 80, 94, 11, 81, 70,
                      64, 59, 18, 0, 36, 3, 8, 15, 42,
                      9, 0, 42, 47, 52, 32, 26, 48, 55,
                      6, 29, 84, 2, 4, 18, 56, 7, 29,
                      93, 44, 71, 3, 86, 66, 31, 65, 0,
                      79, 20, 65, 52, 13 } };

long[] capacities = { 850 };

利润是long[] 权重是long[,] 容量是long[]

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2011-05-13
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2011-03-11
    • 2011-07-10
    相关资源
    最近更新 更多