当前位置: 首页 > article >正文

01背包问题 动态规划

01背包问题 动态规划

  • 01背包问题 动态规划
    • 写了点代码 C#实现
    • 程序运行结果
    • 代码和程序已经上传

01背包问题 动态规划

很有意思的问题。

写了点代码 C#实现

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using static System.Net.Mime.MediaTypeNames;

namespace Package
{
    public class Item
    {
        public int weight;
        public int value;

        public Item(int w, int val) 
        {
            weight = w;
            value = val;
        }
    }

    public class Problem
    {
        //背包容量
        int content;
        int item_cnt;
        Item[] items;
        int[,] dps;

        public Problem()
        {
        }

        public void Init()
        {
            Console.Write("请输入背包容量(正整数):");
            string con = Console.ReadLine();
            while (!int.TryParse(con, out content) || content < 0) 
            {
                Console.Write("输入错误,请输入背包容量(正整数):");
                con = Console.ReadLine();
            }

            Console.Write("请输入物品数量(正整数):");
            con = Console.ReadLine();
            while (!int.TryParse(con, out item_cnt) || item_cnt < 0)
            {
                Console.Write("输入错误,请输入物品数量(正整数):");
                con = Console.ReadLine();
            }

            items = new Item[item_cnt];
            int temp_weight = 0, temp_val = 0;
            for (int idx  = 0; idx < items.Length; idx++) 
            {
                Console.Write("请输入物品{0}重量(正整数):", idx+1);
                con = Console.ReadLine();
                while (!int.TryParse(con, out temp_weight) || temp_weight < 0)
                {
                    Console.Write("输入错误,请输入物品{0}重量(正整数):", idx + 1);
                    con = Console.ReadLine();
                }

                Console.Write("请输入物品{0}价值(正整数):", idx + 1);
                con = Console.ReadLine();
                while (!int.TryParse(con, out temp_val) || temp_val < 0)
                {
                    Console.Write("输入错误,请输入物品{0}价值(正整数):", idx + 1);
                    con = Console.ReadLine();
                }

                items[idx] = new Item(temp_weight, temp_val);
            }
        }

        public void Display()
        {
            Console.WriteLine("========问题信息========");
            Console.WriteLine("背包容量:{0} 物品数量:{1}", content, item_cnt);
            for (int idx = 0; idx < items.Length; idx++) 
            {
                Console.WriteLine("物品{0} (重量:{1} 价值:{2})", idx+1, items[idx].weight, items[idx].value);
            }
        }

        public void Cal()
        {
            int h_cnt = item_cnt + 1;
            int l_cnt = content + 1;
            dps = new int[h_cnt, l_cnt];
            for (int item = 0;item < h_cnt; item++) 
            {
                for (int cidx = 0; cidx < l_cnt; cidx++) 
                {
                    if (item == 0) 
                    {
                        dps[item, cidx] = 0;
                    }
                    else
                    {
                        if (cidx < items[item - 1].weight)//背包在此容量下压根就装不上
                        {
                            dps[item, cidx] = dps[item - 1, cidx];
                        }
                       else//能装 装和不装取最大
                        {
                            dps[item, cidx] = Math.Max(dps[item-1, cidx], dps[item-1, cidx-items[item-1].weight] + items[item-1].value);
                        }
                    }
                }
            }
        }

        public void Answer()
        {
            Console.WriteLine("========dp table========");
            for (int h = 1; h < item_cnt + 1; h++)
            {
                for (int l = 0; l < content + 1; l++)
                {
                    Console.Write("{0}   ", dps[h, l]);
                }
                Console.WriteLine();
            }

            Console.WriteLine("最大价值:{0}", dps[item_cnt, content]);
            Console.Write("背包信息:");
            Plan(item_cnt, content);
            Console.WriteLine();
        }

        void Plan(int h, int l)
        {
            if (l <= 0 || h <= 0)
                return;

            if (dps[h - 1,l] != dps[h,l])
            {
                Plan(h-1, l - items[h-1].weight);
                Console.Write("物品{0} ", h);
            }
            else
            {
                Plan(h-1, l);
            }
        }
    }

    internal class Program
    {
        static bool IsContinue()
        {
            Console.WriteLine("是否继续(Y/N)?");
            string val = Console.ReadLine();
            while (val != "Y" && val != "y" && val != "N" && val != "n")
            {
                Console.WriteLine("是否继续(Y/N)?");
                val = Console.ReadLine();
            }

            if (val == "Y" || val == "y")
            {
                return true;
            }
            else
            {
                return false;
            }
        }

        static void Main(string[] args)
        {
            Problem problem = new Problem();
            do
            {
                problem.Init();
                problem.Display();
                problem.Cal();
                problem.Answer();
            } while (IsContinue());
         }
    }
}

程序运行结果

在这里插入图片描述

代码和程序已经上传

代码和程序


http://www.kler.cn/a/228829.html

相关文章:

  • 深度学习 Pytorch 基本优化思想与最小二乘法
  • win11的WSL报错WslRegisterDistribution failed with error: 0x800701bc
  • Linux 系统性能调优
  • 考研计算机组成原理——零基础学习的笔记
  • 探索与创作:2024年CSDN平台上的成长与突破
  • 【Python】随机数种子(random seed)的设置
  • CAN通信----(创芯科技)CAN分析仪----转CANTest使用
  • 2024年2月CCF-全国精英算法大赛题目
  • 前端面试题——Vue的双向绑定
  • <网络安全>《16 网络安全隔离与信息单向导入系统》
  • 计算机视觉实战项目3(图像分类+目标检测+目标跟踪+姿态识别+车道线识别+车牌识别+无人机检测+A*路径规划+单目测距与测速+行人车辆计数等)
  • 【HarmonyOS应用开发】Web组件的使用(十三)
  • 壹[1],Xamarin开发环境配置
  • linux的nginx安装
  • 复旦大学NLP团队发布86页大模型Agent综述
  • Git私服搭建
  • UML---用例图,类图
  • 前端如何预防CSRF
  • python的进程,线程、协程
  • 群晖NAS开启FTP服务结合内网穿透实现公网远程访问本地服务
  • Unity3D开发之鼠标单双击判断
  • 如何在PS5上使用金手指修改游戏
  • docker 离线安装镜像
  • Day05-Linux bash核心介绍及目录命令讲解
  • Day 17------C语言收尾之链表的删除、位运算、预处理、宏定义
  • 【ArcGIS微课1000例】0102:面状要素空洞填充