Problem F
Lighting System
Design

Input: Standard
Input

Output: Standard
Output

You are given the task to design
a lighting system for a huge conference hall. After doing a lot of calculation
& 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 & 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.)
& 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 & 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 & 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                                                  Output
for Sample Input

3

100 500 10 20

120 600 8 16

220 400 7 18

0

读题时题意理解的不太好,看分析后才明白。给出n种电灯泡,含四种属性(V-电压,K-电源费用,C-每个灯泡费用,L-所需灯泡数量);输出最合理的照明系统设计方案,要求花费最少的钱。

自己没考虑到的是:每种电压的灯泡要么全换,要么不换。因为如果只将部分灯泡换成另一种灯泡,则需要买两种不同电压的电源。这样不划算。而且,电压高的灯泡,因电流大小相等,故功率也大,这样会节省更多的钱。

代码很简单:

 #include<iostream>
#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<algorithm>
using namespace std;
const int maxn = ;
struct Lamp
{
int V, K, C, L;
bool operator < (const Lamp& a) const
{
return V < a.V;
}
}lamp[maxn];
int dp[maxn], sum[maxn];
int main()
{
int n;
while(~scanf("%d", &n) && n)
{
for(int i = ; i <= n; i++)
{
scanf("%d%d%d%d", &lamp[i].V, &lamp[i].K, &lamp[i].C, &lamp[i].L);
}
sort(lamp+, lamp++n);
memset(sum, , sizeof(sum));
memset(dp, , sizeof(dp));
sum[] = ;
for(int i = ; i <= n; i++)
{
sum[i] = sum[i-]+lamp[i].L;
if(i == ) dp[i] = lamp[i].C*sum[i]+lamp[i].K;
else
for(int j = ; j < i; j++)
{
if(dp[i] == ) dp[i] = dp[j]+lamp[i].C*(sum[i]-sum[j])+lamp[i].K;
else dp[i] = min(dp[j]+lamp[i].C*(sum[i]-sum[j])+lamp[i].K, dp[i]);
}
}
printf("%d\n", dp[n]);
}
return ;
}

【线性结构上的动态规划】UVa 11400 - Lighting System Design的更多相关文章

  1. UVa 11400 Lighting System Design(DP 照明设计)

    意甲冠军  地方照明系统设计  总共需要n不同类型的灯泡  然后进入 每个灯电压v  相应电压电源的价格k  每一个灯泡的价格c   须要这样的灯泡的数量l   电压低的灯泡能够用电压高的灯泡替换   ...

  2. UVa 11400 - Lighting System Design(线性DP)

    链接: https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem& ...

  3. uva 11400 - Lighting System Design(动态规划 最长上升子序列问题变型)

    本题难处好像是在于 能够把一些灯泡换成电压更高的灯泡以节省电源的钱 .所以也才有了对最优方案的探求 好的处理方法是依照电压从小到大排序.仅仅能让前面的换成后面的.也就满足了把一些灯泡换成电压更高的灯泡 ...

  4. UVa 11400 Lighting System Design【DP】

    题意:给出n种灯泡,分别给出它们的电压v,电源费用k,每个灯泡的费用c,和所需灯泡的数量l,问最优方案的费用 看的紫书= = 首先是dp[i]为灯泡1到i的最小费用, dp[i]=min(dp[i], ...

  5. UVA 11400"Lighting System Design"

    传送门 错误思路 正解 AC代码 参考资料: [1]:https://www.cnblogs.com/Kiraa/p/5510757.html 题意: 现给你一套照明系统,这套照明系统共包含 n 种类 ...

  6. UVa 11400 Lighting System Design

    题意: 一共有n种灯泡,不同种类的灯泡必须用不同种电源,但同一种灯泡可以用同一种电源.每种灯泡有四个参数: 电压值V.电源费用K.每个灯泡的费用C.所需该种灯泡的数量L 为了省钱,可以用电压高的灯泡来 ...

  7. UVA - 11400 Lighting System Design (区间DP)

    这个问题有两个点需要注意: 1. 对于一种灯泡,要么全换,要么全不换. 证明: 设一种灯泡单价为p1,电池价格为k1,共需要L个,若把L1个灯泡换成单价为p2,电池为k2的灯泡,产生的总花费为p1*L ...

  8. UVA 11400 Lighting System Design 照明系统设计

    首先是一个贪心,一种灯泡要么全都换,要么全都不换. 先排序,定义状态d[i]为前面i种灯泡的最小花费,状态转移就是从d[j],j<i,加上 i前面的j+1到i-1种灯泡换成i的花费. 下标排序玩 ...

  9. UVA - 11400 Lighting System Design(照明系统设计)(dp)

    题意:共有n种(n<=1000)种灯泡,每种灯泡用4个数值表示.电压V(V<=132000),电源费用K(K<=1000),每个灯泡的费用C(C<=10)和所需灯泡的数量L(1 ...

随机推荐

  1. Java设计模式系列之适配器模式

    适配器模式的定义 将一个类的接口转换成客户希望的另外一个接口.Adapter模式使得原本由于接口不兼容而不能一起工作的那些类可以一起工作.(就类似于我们充电器的转接头将220V的电压转换成我们的手机端 ...

  2. oracle中DECODE与CASE的用法区别

    对于CASE与DECODE其实并没有太多的区别,他们都是用来实现逻辑判断.Oracle的DECODE函数功能很强,灵活运用的话可以避免多次扫描,从而提高查询的性能.而CASE是9i以后提供的语法,这个 ...

  3. Light oj 1236 - Pairs Forming LCM (约数的状压思想)

    题目链接:http://lightoj.com/volume_showproblem.php?problem=1236 题意很好懂,就是让你求lcm(i , j)的i与j的对数. 可以先预处理1e7以 ...

  4. UVa 1252 Twenty Questions (状压DP+记忆化搜索)

    题意:有n件物品,每件物品有m个特征,可以对特征进行询问,询问的结果是得知某个物体是否含有该特征,要把所有的物品区分出来(n个物品的特征都互不相同), 最小需要多少次询问? 析:我们假设心中想的那个物 ...

  5. UI进阶 数据加密

    一.数据安全 在互联网发展趋势迅猛的今天,数据安全的重要性日趋凸显.也成为我们必须了解的互联网知识.在移动互联网浪潮下,用户的资金安全.企业的信息安全都是我们实际开发中必须考虑的内容.

  6. ASP.NET MVC- 数据验证机制

    ASP.NET MVC的数据验证机制,比起ASP.NET WEBFORM那种高效很多.下面记录以下两个示例,以便日后方便查阅. 方式一:在Controller里通过AddModelError方法返回错 ...

  7. Linux下修改用户home目录

    一般在Linux上新建一个用户,会在/home目录下自动创建一个以用户名命名的home目录 修改linux下用户自动建立的家目录 vi编辑器打开/etc/default/useradd 这个文件,然后 ...

  8. NHibernate - ICriteria 查询

    http://blog.knowsky.com/213234.htm http://blog.chinaunix.net/uid-20463341-id-1673509.html http://www ...

  9. servlet--页面自刷新

    protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletExcepti ...

  10. C#关于外挂汉化的一些思考(API函数FindWindow,FindWindowEx,SendMessage)(转)

    这次我们试着运用C#的API函数去修改别的程序的标题文本(适用范围C#) 其实这是FindWindow,FindWindowEx,SendMessage的应用举例之一 也就是所谓的外挂汉化. 附:Wi ...