ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

搜索
EH技术汇-专业的职场技能充电站 妙哉!函数段子手趣味讲函数 Excel服务器-会Excel,做管理系统 效率神器,一键搞定繁琐工作
HR薪酬管理数字化实战 Excel 2021函数公式学习大典 Excel数据透视表实战秘技 打造核心竞争力的职场宝典
让更多数据处理,一键完成 数据工作者的案头书 免费直播课集锦 ExcelHome出品 - VBA代码宝免费下载
用ChatGPT与VBA一键搞定Excel WPS表格从入门到精通 Excel VBA经典代码实践指南
12
返回列表 发新帖
楼主: yuk_yu

[求助] 数据拼凑

[复制链接]

TA的精华主题

TA的得分主题

发表于 2023-6-5 11:17 | 显示全部楼层
不清楚你的需求

TA的精华主题

TA的得分主题

 楼主| 发表于 2023-6-5 11:46 | 显示全部楼层
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册
本帖最后由 yuk_yu 于 2023-6-8 11:45 编辑
yndly 发表于 2023-6-5 11:17
不清楚你的需求

更新了一个解决方案。期待大家给出更优方案!

TA的精华主题

TA的得分主题

发表于 2023-6-8 09:22 | 显示全部楼层
经过一段时间的思考,按照ShipQTY的顺序进行拼凑还是可行的。

TA的精华主题

TA的得分主题

发表于 2023-6-8 09:40 | 显示全部楼层
从实际应用来看,如果数量不多,递归枚举一下也可以实现,区别就是如何优化,剪枝,把运算量缩小。        如果数量很多,或者是一些特殊的数值(比如没有能实现的组合会跑很久)那这个问题就难了,论坛相应的求助很多,但是一直没看到通用的解决方法

TA的精华主题

TA的得分主题

 楼主| 发表于 2023-6-8 10:53 | 显示全部楼层
micch 发表于 2023-6-8 09:40
从实际应用来看,如果数量不多,递归枚举一下也可以实现,区别就是如何优化,剪枝,把运算量缩小。         ...

是的,我其实用了贪婪算法,好像也不能实现我的需求,例如:1,2,3,4,5,6,7,8,9,10,11,12, 要拼凑15,那就有很多种拼凑方式,1+2+3+4+5=15, 5+10=15,11+4=15 ,12+3=15; 如果同时要用这些数拼凑多个指定的数贪婪算法就不是太合适。所以特别头疼。

TA的精华主题

TA的得分主题

 楼主| 发表于 2023-6-8 11:43 | 显示全部楼层
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册
本帖最后由 yuk_yu 于 2023-6-8 11:46 编辑

我写了一个,但不是太满意,一定不是最优方案。

Option Explicit
Sub TryTest()
    Dim packingQty() As Variant
    Dim ShipQty() As Variant
    Dim shipAddress() As Variant
    packingQty = Array(100, 100, 100, 100, 100, 100, 100, 20, 50, 30, 10, 15, 25, 5, 5, 10, 10, 15, 20, 25, 30, 35)
    ShipQty = Array(230, 135, 40, 110, 120, 116, 141, 35, 30)
    shipAddress = Array("shanghai", "Shenzhen", "Wuhan", "Guangzhou", "ttttt", "Wuhan1", "Guangzhou1", "ttttt1", "ttttt2")
    Dim result() As Variant, i As Integer
    result = PackingCombinationRecursion(packingQty, ShipQty, shipAddress)
    For i = 0 To UBound(result)
        Debug.Print result(i)
    Next i
End Sub
Sub QuickSort(ByRef arr As Variant, ByVal left As Long, ByVal right As Long)
    Dim i As Long, j As Long
    Dim pivot As Variant
    Dim temp As Variant
    i = left
    j = right
    pivot = arr((left + right) \ 2)
    While i <= j
        While arr(i) > pivot And i < right
            i = i + 1
        Wend
        While pivot > arr(j) And j > left
            j = j - 1
        Wend
        If i <= j Then
            temp = arr(i)
            arr(i) = arr(j)
            arr(j) = temp
            i = i + 1
            j = j - 1
        End If
    Wend
    If left < j Then QuickSort arr, left, j
    If i < right Then QuickSort arr, i, right
End Sub
Function PackingCombinationRecursion(packingQty() As Variant, ShipQty() As Variant, shipAddress() As Variant) As Variant
    Dim i As Integer, j As Integer
    Dim temp As Integer
    Dim dict As Object
    Set dict = CreateObject("Scripting.Dictionary")
    QuickSort packingQty, 0, UBound(packingQty)
    For i = 0 To UBound(packingQty)
        If (packingQty(i)) Then
            dict(packingQty(i)) = dict(packingQty(i)) + 1
        Else
            dict.Add packingQty(i), 1
        End If
    Next i
    Dim result() As Variant
    ReDim result(0 To UBound(ShipQty))
    For i = 0 To UBound(ShipQty)
        temp = ShipQty(i)
        Dim factors() As Variant
        ReDim factors(0 To 0)
        Dim k As Integer
        factors = FindFactors(temp, packingQty)
        If i <= UBound(shipAddress) Then
            If Evaluate(Join(factors, "+")) = ShipQty(i) Then
                result(i) = shipAddress(i) & ": " & Join(factors, "+") & " = " & ShipQty(i)
            Else
                result(i) = shipAddress(i) & ": " & Join(factors, "+") & " = " & ShipQty(i) & " is short " & ShipQty(i) - Evaluate(Join(factors, "+"))
            End If
        End If
    Next i
    PackingCombinationRecursion = result
End Function
Function FindFactors(ByVal temp As Integer, ByRef packingQty() As Variant) As Variant
    Dim i As Integer, j As Integer
    Dim max_factor As Integer
    max_factor = 0
    Dim k As Integer
    For j = UBound(packingQty) To 0 Step -1
        If packingQty(j) > max_factor And packingQty(j) <= temp Then
            max_factor = packingQty(j)
            k = j
        End If
    Next j
    If max_factor = 0 Then
        FindFactors = Array()
        Exit Function
    End If
    temp = temp - max_factor
    packingQty(k) = 0
    Dim factors() As Variant
    ReDim factors(0 To 0)
    factors = FindFactors(temp, packingQty)
    ReDim Preserve factors(0 To UBound(factors) + 1)
    factors(UBound(factors)) = max_factor
    FindFactors = factors
End Function

TA的精华主题

TA的得分主题

发表于 2023-6-8 12:35 | 显示全部楼层
就事论事,也写了一个,很粗糙,也会有很多考虑不到的地方,仅供参考。

Option Explicit
Sub text()
    Dim PackingQty(), ShipQty(), ShipAddress(), kk As String
    PackingQty = Array(100, 100, 100, 100, 100, 100, 100, 20, 50, 30, 10, 15, 25, 5)
    ShipQty = Array(230, 130, 40, 110)
    kk = Optimal(PackingQty(), ShipQty(), ShipAddress())
    Debug.Print kk
End Sub
Function Optimal(PackingQty(), ShipQty()) As String
    Dim i As Long, j As Long, NMax As Long
    Dim Jgarr() As String  
    Dim PKQty() As String
    Dim ZyjArr() As String
    Dim ReBZ()   
    Dim ss() As String, WB As String
    Dim cha As Double, he As Double
    ReDim Jgarr(0 To UBound(ShipQty))
    ReDim PKQty(0 To UBound(PackingQty))
    ReDim ZyjArr(0 To UBound(ShipQty))
    ReDim ReBZ(0 To UBound(ShipQty))
    For i = LBound(ShipQty) To UBound(ShipQty)
        NMax = ShipQty(i)
        For j = LBound(PackingQty) To UBound(PackingQty)
            If PKQty(j) <> "使用" Then
                If PackingQty(j) <= NMax Then
                    NMax = NMax - PackingQty(j)
                    ZyjArr(i) = ZyjArr(i) & PackingQty(j) & "+"
                    ReBZ(i) = ReBZ(i) + PackingQty(j)
                    PKQty(j) = "使用"
                End If
            End If
        Next
    Next
    For i = LBound(ShipQty) To UBound(ShipQty)
        If ShipQty(i) <> ReBZ(i) Then
            ss = Split(Left(ZyjArr(i), Len(ZyjArr(i)) - 1), "+")
            If UBound(ss) = 0 Then
                ZyjArr(i) = ss(0) & "+"
                ReBZ(i) = "是"
            Else
                WB = ""
                For j = 0 To UBound(ss) - 1
                    WB = WB & ss(j) & "+"
                Next
                ZyjArr(i) = WB
                ReBZ(i) = "是"
                For j = LBound(PackingQty) To UBound(PackingQty)
                    If PackingQty(j) = Val(ss(UBound(ss))) Then
                        PKQty(j) = ""
                    End If
                Next
            End If
            Cells(i, "D") = ZyjArr(i)
        Else
            ReBZ(i) = "否"
        End If
    Next
    For i = LBound(ShipQty) To UBound(ShipQty)
         If ReBZ(i) = "是" Then
             ss = Split(Left(ZyjArr(i), Len(ZyjArr(i)) - 1), "+")
             If UBound(ss) = 0 Then
                 cha = ShipQty(i) - Val(ss(0))
             Else
                 he = 0
                 For j = 0 To UBound(ss)
                     he = he + Val(ss(j))
                 Next
                 cha = ShipQty(i) - he
             End If
             For j = UBound(PackingQty) To LBound(PackingQty) + 1 Step -1
                 If PKQty(j) = "" Then
                     If PackingQty(j) > cha Then
                         ReBZ(i) = PackingQty(j)
                         PKQty(j) = "使用"
                         Exit For
                     End If
                 End If
             Next
         Else
             ReBZ(i) = ""
         End If
    Next
    For i = LBound(ReBZ) To UBound(ReBZ)
         If ReBZ(i) <> "" Then
             Optimal = Optimal & ZyjArr(i) & ReBZ(i) & "(重新包装),"
         Else
             ZyjArr(i) = Left(ZyjArr(i), Len(ZyjArr(i)) - 1)
             Optimal = Optimal & ZyjArr(i) & ","
         End If
    Next
    Optimal = Left(Optimal, Len(Optimal) - 1)
End Function

TA的精华主题

TA的得分主题

 楼主| 发表于 2023-6-8 14:01 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
本帖最后由 yuk_yu 于 2023-6-8 14:09 编辑
边缘码农 发表于 2023-6-8 12:35
就事论事,也写了一个,很粗糙,也会有很多考虑不到的地方,仅供参考。

Option Explicit

谢谢,学习一下!纯数组循环速度特别快。
您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

手机版|关于我们|联系我们|ExcelHome

GMT+8, 2024-11-16 11:52 , Processed in 0.034196 second(s), 7 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

沪公网安备 31011702000001号 沪ICP备11019229号-2

本论坛言论纯属发表者个人意见,任何违反国家相关法律的言论,本站将协助国家相关部门追究发言者责任!     本站特聘法律顾问:李志群律师

快速回复 返回顶部 返回列表