Sign Up

Have an account? Sign In Now

Sign In

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

Sorry, you do not have permission to ask a question, You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here
Sign InSign Up

SIKSHAPATH

SIKSHAPATH Logo SIKSHAPATH Logo

SIKSHAPATH Navigation

  • Home
  • Questions
  • Blog
    • Computer Science(CSE)
    • NPTEL
    • Startup
  • Shop
    • Internshala Answers
Search
Ask A Question

Mobile menu

Close
Ask A Question
  • Home
  • Questions
  • Blog
    • Computer Science(CSE)
    • NPTEL
    • Startup
  • Shop
    • Internshala Answers
  • About
    1. Asked: October 23, 2022In: Data Structure

      Solve using fractional knapsack: M=20, n=4 P= (3, 10, 15, …

      58n25709
      58n25709
      Added an answer on January 30, 2023 at 10:13 am

      The fractional knapsack problem involves selecting items to fill a knapsack of limited capacity (M=20 in this case) in such a way as to maximize the total value. Here's how to solve it: Sort the items in decreasing order of their value per unit weight (i.e. Pi/Wi). Item 1: 3/5 = 0.6 Item 2: 10/13 =Read more

      The fractional knapsack problem involves selecting items to fill a knapsack of limited capacity (M=20 in this case) in such a way as to maximize the total value.

      Here’s how to solve it:

      1. Sort the items in decreasing order of their value per unit weight (i.e. Pi/Wi).
        • Item 1: 3/5 = 0.6
        • Item 2: 10/13 = 0.769
        • Item 3: 15/12 = 1.25
        • Item 4: 5/8 = 0.625
      2. Take the items in the order of the sorted list until the knapsack is full. If a complete item cannot fit, take a fraction of it.
        • Item 3 (15/12) can fit completely, so add it to the knapsack and reduce the capacity to 20-12=8.
        • Item 2 (10/13) can fit completely, so add it to the knapsack and reduce the capacity to 8-13= -5.
        • Item 1 (3/5) cannot fit completely, so add 3/5 of it to the knapsack and reduce the capacity to 0.
        • Item 4 (5/8) is not considered since the knapsack is full.
      3. The total value of the items in the knapsack is 15 + 10 + (3/5)*3 = 22.

      So the optimal solution is to choose items 3, 2 and a fraction of item 1, with a total value of 22.

      See less
        • 0
      • Share
        Share
        • Share on WhatsApp
        • Share on Facebook
        • Share on Twitter
        • Share on LinkedIn
    2. Asked: October 23, 2022In: Data Structure

      Analyse the algorithm (in terms of both time and space) …

      58n25709
      58n25709
      Added an answer on January 30, 2023 at 10:11 am

      The time complexity of the subset sum problem using dynamic programming technique is O(nW), where n is the number of items and W is the target sum. The space complexity is O(nW). The most time-consuming part of the algorithm is the bottom-up dynamic programming loop, where each cell in the n x W matRead more

      The time complexity of the subset sum problem using dynamic programming technique is O(nW), where n is the number of items and W is the target sum. The space complexity is O(nW).

      The most time-consuming part of the algorithm is the bottom-up dynamic programming loop, where each cell in the n x W matrix is filled in. This loop takes O(nW) time in total.

      The most space-consuming part of the algorithm is the n x W matrix itself, which requires O(nW) space to store the results of the dynamic programming.

      Overall, both the time and space complexity are directly proportional to the size of the n x W matrix, making the dynamic programming solution to the subset sum problem an exponential-time algorithm.

      See less
        • 0
      • Share
        Share
        • Share on WhatsApp
        • Share on Facebook
        • Share on Twitter
        • Share on LinkedIn
    3. Asked: October 23, 2022In: Data Structure

      A networking company uses a compression technique to encode the …

      58n25709
      58n25709
      Added an answer on January 30, 2023 at 10:09 am
      This answer was edited.

      Total number of characters in the message = 100. Each character takes 1 byte. So total number of bits needed = 800. After Huffman Coding, the characters can be represented with: f: 0 c: 100 d: 101 a: 1100 b: 1101 e: 111 Total number of bits needed = 224 Hence, number of bits saved = 800 - 224 = 576Read more

      Total number of characters in the message = 100. 
      Each character takes 1 byte. So total number of bits needed = 800.
      
      After Huffman Coding, the characters can be represented with:
      f: 0
      c: 100
      d: 101
      a: 1100
      b: 1101
      e: 111
      Total number of bits needed = 224
      Hence, number of bits saved = 800 - 224 = 576
      
      Huffman Coding | Greedy Algo-3 - GeeksforGeeks
      See less
        • 0
      • Share
        Share
        • Share on WhatsApp
        • Share on Facebook
        • Share on Twitter
        • Share on LinkedIn
    4. Asked: November 17, 2021In: Other

      Write the features of dynamic programming

      58n25709
      58n25709
      Added an answer on November 17, 2021 at 7:09 pm
      This answer was edited.

      Your Answer is in this image.

      Your Answer is in this image.

      See less
        • 2
      • Share
        Share
        • Share on WhatsApp
        • Share on Facebook
        • Share on Twitter
        • Share on LinkedIn

    Sidebar

    store ads

    Stats

    • Questions 1k
    • Answers 1k
    • Posts 149
    • Best Answers 89
    • This Free AI Tool Translates Entire Books in Minute !
    • AI News: 🎬 Hollywood’s AI Studios, 🎓 OpenAI’s Latest Gift to Educators, 🚚 Class8 Bags $22M, 🧠 Google Gemini’s Memory Upgrade
    • AI NEWS: Legal Action Against OpenAI, $16M Paid, & Elon Musk’s Praise from Investor 🤖💰📑 | AI Boosts Cloud Seeding for Water Security 🌱💧
    • AI News: 🎬AI Video Tool Scam Exposed🤯, 🛰️ AI-Powered Drones to Ukraine 😱, Google’s $20M AI Push, Sam Altman Joins SF’s Leadership Team
    • AI News: 🤝 Biden Meets Xi on AI Talks, 💡 Xavier Niel’s Advice for Europe, ♻️ Hong Kong’s Smart Bin Revolution, 🚀 AI x Huawei

    Explore

    • Recent Questions
    • Questions For You
    • Answers With Time
    • Most Visited
    • New Questions
    • Recent Questions With Time

    Footer

    SIKSHAPATH

    Helpful Links

    • Contact
    • Disclaimer
    • Privacy Policy Notice
    • TERMS OF USE
    • FAQs
    • Refund/Cancellation Policy
    • Delivery Policy for Sikshapath

    Follow Us

    © 2021-24 Sikshapath. All Rights Reserved