Lighting System Design UVA - 11400 简单dp

本文探讨了为大型会议厅设计高效能、经济实惠的照明系统的方法。通过计算与绘图确定了各类灯具的需求,并提出了一种优化策略,通过替换部分灯具类别以减少总体成本,同时确保照明质量。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

You are given the task to design a lighting system for a huge conference hall. After doing a lot of calculation and sketching, you have figured out the requirements for an energy-efficient design that can properly illuminate the entire hall. According to your design, you need lamps of n different power ratings. For some strange current regulation method, all the lamps need to be fed with the same amount of current. So, each category of lamp has a corresponding voltage rating. Now, you know the number of lamps and cost of every single unit of lamp for each category. But the problem is, you are to buy equivalent voltage sources for all the lamp categories. You can buy a single voltage source for each category (Each source is capable of supplying to infinite number of lamps of its voltage rating.) and complete the design. But the accounts section of your company soon figures out that they might be able to reduce the total system cost by eliminating some of the voltage sources and replacing the lamps of that category with higher rating lamps. Certainly you can never replace a lamp by a lower rating lamp as some portion of the hall might not be illuminated then. You are more concerned about money-saving than energy-saving. Find the minimum possible cost to design the system. Input Each case in the input begins with n (1 ≤ n ≤ 1000), denoting the number of categories. Each of the following n lines describes a category. A category is described by 4 integers - V (1 ≤ V ≤ 132000), the voltage rating, K (1 ≤ K ≤ 1000), the cost of a voltage source of this rating, C (1 ≤ C ≤ 10), the cost of a lamp of this rating and L (1 ≤ L ≤ 100), the number of lamps required in this category. The input terminates with a test case where n = 0. This case should not be processed. Output For each test case, print the minimum possible cost to design the system. Sample Input 3 100 500 10 20 120 600 8 16 220 400 7 18 0 Sample Output 778

。。。

要省电嘛 就把电压从小到大排

然后一波n平方的递推

注意一种灯泡如果要换的话一定要全换

不然回花掉电源的钱 更亏

一重循环枚举每个位置

二重循环求此位置最优

min(dp[i],dp[j]+(lig[i].sum-lig[j].sum)*lig[i].c+lig[i].s)除去前面j个               j+1到i全部换成i这种灯泡     再加上电源钱

#include<bits/stdc++.h>
#define inf 1e8
using namespace std;

const int maxn=1005;

struct node
{
	int v,s,c,k,sum;
}lig[maxn];

bool cmp(node a,node b)
{
	return a.v<b.v;
}

int dp[maxn];


int main()
{
	freopen("slight-tree.txt","w",stdout);
	int n;
	while(scanf("%d",&n)&&n)
	{
		lig[0].k=lig[0].c=lig[0].s=lig[0].sum=lig[0].v=0;
	for(int i=1;i<=n;i++)
	{
		scanf("%d%d%d%d",&lig[i].v,&lig[i].s,&lig[i].c,&lig[i].k);
	}
	sort(lig+1,lig+1+n,cmp);
	fill(dp+1,dp+1+n,inf);
	dp[0]=0;
	for(int i=1;i<=n;i++)
	{
		lig[i].sum=lig[i-1].sum+lig[i].k;
	}
	for(int i=1;i<=n;i++)
	{
		for(int j=0;j<i;j++)
		{
			dp[i]=min(dp[i],dp[j]+(lig[i].sum-lig[j].sum)*lig[i].c+lig[i].s);
		}
	}
	printf("%d\n",dp[n]);
	}
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值