首页 > 其他分享 >ABC 322 E Product Development

ABC 322 E Product Development

时间:2024-06-15 18:22:25浏览次数:23  
标签:Development 11 Product int 322 maxn inf dp 属性

题意
公司要升级一个产品的K种属性,每种的初始值为0。有N种升级计划,第i种花费c[i]的代价给编号为j=1,2,...,K的属性分别增加a[i][j],求把所有属性提升到大于等于P的最小代价

题解
显然多维费用背包,定义dp[t][i][j][k][s][r]为前t个物品,让这几种属性为i,j,k,s,r的时候的最小费用。在初始情况下要初始化inf(inf记得取大一点,不然会wa),然后dp[0][0][0][0][0][0]=0,之后就是十分简答的状态转移就OK了,因为到达p就行了,所以当某一个属性超过p时,我们取个min即可。(可以降成五维dp,但是我太懒了)

代码

#include<bits/stdc++.h>
#define int long long
using namespace std;
const int maxn=200;
const int inf=1e18;
int dp[maxn][11][11][11][11][11],c[maxn],a[maxn][maxn];
int mas[maxn];
int n,K,p;

signed main()
{
	ios::sync_with_stdio(false);
	cin.tie(NULL);
	cout.tie(NULL);
	
	
	cin>>n>>K>>p;
	for(int i=1;i<=n;i++)
	{
		cin>>c[i];
		for(int j=1;j<=K;j++) cin>>a[i][j];
	}
	int flag=1;
	for(int i=0;i<=n;i++)
	  for(int j=0;j<=10;j++)
	    for(int k=0;k<=10;k++)
	      for(int s=0;s<=10;s++)
	        for(int t=0;t<=10;t++)
	          for(int h=0;h<=10;h++)
	            dp[i][j][k][s][t][h]=inf;
	dp[0][0][0][0][0][0]=0;
	for(int t=1;t<=n;t++)
	{
		for(int i=0;i<=p;i++)
		  for(int j=0;j<=p;j++)
		    for(int k=0;k<=p;k++)
		      for(int s=0;s<=p;s++)
		        for(int r=0;r<=p;r++)
		        {
				    dp[t][i][j][k][s][r]=min(dp[t-1][i][j][k][s][r],dp[t][i][j][k][s][r]);
		        	dp[t][min(p,i+a[t][1])][min(p,j+a[t][2])][min(p,k+a[t][3])][min(p,s+a[t][4])][min(p,r+a[t][5])]=min(dp[t][min(p,i+a[t][1])][min(p,j+a[t][2])][min(p,k+a[t][3])][min(p,s+a[t][4])][min(p,r+a[t][5])],dp[t-1][i][j][k][s][r]+c[t]);
				}
	}
	int ans=1e18;
	for(int t=1;t<=K;t++) mas[t]=p;
	ans=min(ans,dp[n][mas[1]][mas[2]][mas[3]][mas[4]][mas[5]]);
	if(ans!=1e18) cout<<ans<<endl;
	else cout<<-1<<endl;
	 
	return 0;
 } 

标签:Development,11,Product,int,322,maxn,inf,dp,属性
From: https://www.cnblogs.com/lulu7/p/18249592

相关文章

  • 代码随想录算法训练营第四十八天| 70. 爬楼梯(进阶版)、322. 零钱兑换、 279.完全平方数
     70.爬楼梯(进阶版)文档讲解:代码随想录题目链接:57.爬楼梯(第八期模拟笔试)我们之前做的爬楼梯是只能至多爬两个台阶。这次改为:一步一个台阶,两个台阶,三个台阶,.......,直到m个台阶。问有多少种不同的方法可以爬到楼顶呢?这又有难度了,这其实是一个完全背包问题。1阶,2阶,.........
  • day48 70. 爬楼梯 (进阶) 322. 零钱兑换 279.完全平方数
    70.爬楼梯(进阶)57.爬楼梯(第八期模拟笔试)其实是一个完全背包问题。1阶,2阶,....m阶就是物品,楼顶就是背包。动规五部曲1.确定dp数组以及下标的含义dp[i]:爬到有i个台阶的楼顶,有dp[i]种方法。2.确定递推公式求装满背包有几种方法,递推公式一般都是dp[i]+=dp[i-nums[j......
  • Day 10:100322. 删除星号以后字典序最小的字符串
    Leetcode100322.删除星号以后字典序最小的字符串给你一个字符串s。它可能包含任意数量的‘’字符。你的任务是删除所有的'’字符。当字符串还存在至少一个‘*’字符时,你可以执行以下操作:删除最左边的‘*’字符,同时删除该星号字符左边一个字典序最小的字符......
  • [论文速览] Design and Development of a Framework For Stroke-Based Handwritten Gu
    1.Pretitle:DesignandDevelopmentofaFrameworkForStroke-BasedHandwrittenGujaratiFontGenerationsource:arXiv2024paper:https://arxiv.org/abs/2404.03277code:None关键词:fontgeneration,handwritten,gujarati,stroke阅读理由:刷新鲜论文ing2.Mo......
  • 低代码开发平台(Low-code Development Platform)的模块组成部分
    低代码开发平台(Low-codeDevelopmentPlatform)的模块组成部分主要包括以下几个方面:低代码开发平台的模块组成部分可以按照包含系统、模块、菜单组织操作行为等维度进行详细阐述。以下是从这些方面对平台模块组成部分的说明:包含系统低代码开发平台本身作为一个完整的系统,包含......
  • Product Quantization
    Background如何在数据海量的内容库中快速检索出Top-k的信息候选?缩小查找的范围,快速找到最有可能成为近邻的一个粗集合对Embedding向量做压缩,快速计算两个Embedding的距离。本实践内容的代码管理在Codes24/FlashCIM/文件夹下的pq_lib中VectorQuantization将一个向量空间中......
  • 322 - Coin Change 换零钱
    问题描述Youaregivenanintegerarraycoinsrepresentingcoinsofdifferentdenominationsandanintegeramountrepresentingatotalamountofmoney.Returnthefewestnumberofcoinsthatyouneedtomakeupthatamount.Ifthatamountofmoneycannotbe......
  • Find Products of Elements of Big Array
    FindProductsofElementsofBigArrayA powerfularray foraninteger x istheshortestsortedarrayofpowersoftwothatsumupto x.Forexample,thepowerfularrayfor11is [1,2,8].Thearray big_nums iscreatedbyconcatenatingthe powerful......
  • COMP9120 Database Management Systems Assignment 2: Database Application Developm
    COMP9120DatabaseManagementSystemsAssignment2:DatabaseApplicationDevelopmentGroupassignment(15%)IntroductionTheobjectivesofthisassignmentaretogainpracticalexperienceininteractingwitharelationaldatabasemanagementsystemusingan......
  • FAT322与NTFS的区别
    FAT322与NTFS的区别FAT32和NTFS是两种不同的文件系统,它们之间存在一些显著的区别。以下是FAT32与NTFS的主要区别:支持的分区大小:FAT32文件系统最大只支持32GB分区,每个分区只能存放2GB的信息。然而,NTFS文件系统则可以支持高达2TB的单个分区。文件大小限制:FAT32单个文件大小不能......