📜  K-ary 树中权重为 W 的路径数

📅  最后修改于: 2021-09-17 16:04:12             🧑  作者: Mango

给定一个 K-ary 树,其中每个节点有 K 个孩子,每个边都有一些权重。从特定节点到其所有子节点的所有边(即 K)的权重按升序排列为 1, 2, 3, …, K。 找到总权重为 W 的路径数(路径中所有边权重的总和) 从根开始并包含至少一条权重至少为 M 的边。
例子:

Input : W = 3, K = 3, M = 2
Output : 3
Explanation : One path can be (1 + 2), second can be (2 + 1) and third is 3.

Input : W = 4, K = 3, M = 2
Output : 6

方法:这个问题可以使用动态规划方法来解决。这个想法是保持两种状态,一种用于当前需要的权重,另一种用于布尔变量,该变量表示当前路径是否包含权重至少为 M 的边缘。迭代所有可能的边权重,即 K 并递归求解权重W – i for 1 ≤ i ≤ K 。如果当前边权重大于或等于 M,则将布尔变量设置为 1,以便下次调用。
下面是上述方法的实现。

C++
// C++ program to count the number of
// paths with weight W in a K-ary tree
#include 
using namespace std;
 
// Function to return the number of ways
// having weight as wt in K-ary tree
int solve(int dp[][2], int wt, int K, int M,
          int used)
{
    // Return 0 if weight becomes less
    // than zero
    if (wt < 0)
        return 0;
 
    if (wt == 0) {
 
        // Return one only if the
        // current path has included
        // edge weight of atleast M
        if (used)
            return 1;
        return 0;
    }
 
    if (dp[wt][used] != -1)
        return dp[wt][used];
 
    int ans = 0;
    for (int i = 1; i <= K; i++) {
 
        // If the current edge weight
        // is greater than or equal to
        // M, set used as true
        if (i >= M)
            ans += solve(dp, wt - i,
                         K, M, used | 1);
        else
            ans += solve(dp, wt - i,
                         K, M, used);
    }
    return dp[wt][used] = ans;
}
 
// Driver Code to test above function
int main()
{
    int W = 3, K = 3, M = 2;
    int dp[W + 1][2];
    memset(dp, -1, sizeof(dp));
    cout << solve(dp, W, K, M, 0) << endl;
    return 0;
}


Java
// Java program to count the number of
// paths with weight W in a K-ary tree
 
class GFG
{
    // Function to return the number of ways
    // having weight as wt in K-ary tree
 
    public static int solve(int[][] dp, int wt,
                            int K, int M, int used)
    {
        // Return 0 if weight becomes less
        // than zero
        if (wt < 0)
        {
            return 0;
        }
 
        if (wt == 0)
        {
 
            // Return one only if the
            // current path has included
            // edge weight of atleast M
            if (used == 1)
            {
                return 1;
            }
            return 0;
        }
 
        if (dp[wt][used] != -1)
        {
            return dp[wt][used];
        }
 
        int ans = 0;
        for (int i = 1; i <= K; i++)
        {
 
            // If the current edge weight
            // is greater than or equal to
            // M, set used as true
            if (i >= M)
            {
                ans += solve(dp, wt - i,
                        K, M, used | 1);
            }
            else
            {
                ans += solve(dp, wt - i,
                        K, M, used);
            }
        }
        return dp[wt][used] = ans;
    }
 
    // Driver Code
    public static void main(String[] args)
    {
 
        int W = 3, K = 3, M = 2;
        int[][] dp = new int[W + 1][2];
        for (int i = 0; i < W + 1; i++)
        {
            for (int j = 0; j < 2; j++)
            {
                dp[i][j] = -1;
            }
        }
        System.out.print(solve(dp, W, K, M, 0) + "\n");
    }
}
 
// This code has been contributed by 29AjayKumar


Python3
# Python 3 program to count the number of
# paths with weight W in a K-ary tree
import numpy as np
 
# Function to return the number of ways
# having weight as wt in K-ary tree
def solve(dp, wt, K, M, used) :
             
    # Return 0 if weight becomes less
    # than zero
    if (wt < 0) :
        return 0
 
    if (wt == 0) :
 
        # Return one only if the
        # current path has included
        # edge weight of atleast M
        if (used) :
            return 1
        return 0
     
    if (dp[wt][used] != -1) :
        return dp[wt][used]
 
    ans = 0
    for i in range(1, K + 1) :
 
        # If the current edge weight
        # is greater than or equal to
        # M, set used as true
        if (i >= M) :
            ans += solve(dp, wt - i,
                         K, M, used | 1)
        else :
            ans += solve(dp, wt - i,
                         K, M, used)
     
    dp[wt][used] = ans
     
    return ans
 
# Driver Code
if __name__ == "__main__" :
 
    W = 3
    K = 3
    M = 2
    dp = np.ones((W + 1, 2));
    dp = -1 * dp
    print(solve(dp, W, K, M, 0))
 
# This code is contributed by Ryuga


C#
// C# program to count the number of
// paths with weight W in a K-ary tree
using System;
   
class GFG
{
    // Function to return the number of ways
    // having weight as wt in K-ary tree
    public static int solve(int[,] dp, int wt, int K, int M, int used)
    {
        // Return 0 if weight becomes less
        // than zero
        if (wt < 0)
            return 0;
       
        if (wt == 0) {
       
            // Return one only if the
            // current path has included
            // edge weight of atleast M
            if (used == 1)
                return 1;
            return 0;
        }
       
        if (dp[wt,used] != -1)
            return dp[wt,used];
       
        int ans = 0;
        for (int i = 1; i <= K; i++) {
       
            // If the current edge weight
            // is greater than or equal to
            // M, set used as true
            if (i >= M)
                ans += solve(dp, wt - i,
                             K, M, used | 1);
            else
                ans += solve(dp, wt - i,
                             K, M, used);
        }
        return dp[wt,used] = ans;
    }
       
    // Driver Code to test above function
    static void Main()
    {
        int W = 3, K = 3, M = 2;
        int[,] dp = new int[W + 1,2];
        for(int i = 0;i < W + 1; i++)
            for(int j = 0; j < 2; j++)
                dp[i,j] = -1;
        Console.Write(solve(dp, W, K, M, 0) + "\n");
    }
    //This code is contributed by DrRoot_
}


Javascript


输出:
3

时间复杂度: O(W * K)

如果您希望与专家一起参加现场课程,请参阅DSA 现场工作专业课程学生竞争性编程现场课程