uva 11400

来源:互联网 发布:网络大型游戏 编辑:程序博客网 时间:2024/06/07 19:43

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种不同类型的灯泡 不同种类的灯泡必须用不同的电源,但同一种灯泡可以共用一个电源。每种灯泡用四个数值表示,灯泡的电压v 对应电压电源的价格k 每个灯泡的价格c 需要这种灯泡的数量l 电压低的灯泡可以用电压高的灯泡替换 每种灯泡只需要一个对应的电源 求完成这个照明系统的最少花费。

提供三种初始化方式:
1.刘汝佳老师版

#include<iostream>#include<algorithm>using namespace std;const int maxn = 1000 + 5;struct Lamp {  int v, k, c, l;  bool operator < (const Lamp& rhs) const {    return v < rhs.v;  }} lamp[maxn];int n, s[maxn], d[maxn];int main() {  while(cin >> n && n) {    for(int i = 1; i <= n; i++)      cin >> lamp[i].v >> lamp[i].k >> lamp[i].c >> lamp[i].l;    sort(lamp+1, lamp+n+1);    s[0] = 0;    for(int i = 1; i <= n; i++) s[i] = s[i-1] + lamp[i].l;    d[0] = 0;    for(int i = 1; i <= n; i++) {      d[i] = s[i] * lamp[i].c + lamp[i].k; // 前i个灯泡全买类型i      for(int j = 1; j <= i; j++)        d[i] = min(d[i], d[j] + (s[i] - s[j]) * lamp[i].c + lamp[i].k);    }    cout << d[n] << "\n";  }  return 0;}

2.

#include<iostream>#include<cstdio>#include<algorithm>#include<cstring>using namespace std;int dp[1005],sum[1005];struct bulb{    int v,k,c,l;}a[1005];bool cmp(bulb a,bulb b){    return a.v<b.v;}int main(){    int n;    while(cin >> n&&n)    {        for(int i=1;i<=n;i++)        cin >> a[i].v >> a[i].k >> a[i].c >> a[i].l;        sort(a+1,a+n+1,cmp);        sum[0]=0;        for(int i=1;i<=n;i++)        sum[i]=sum[i-1]+a[i].l;        for(int i=1;i<=n;i++)        {          if(n==1)          {            dp[i]=a[i].l*a[i].c+a[i].k;          }          else          dp[i]=dp[i-1]+a[i].l*a[i].c+a[i].k;        }        for(int i=1;i<=n;i++)          for(int j=0;j<i;j++)          dp[i]=min(dp[i],dp[j]+(sum[i]-sum[j])*a[i].c+a[i].k);     cout << dp[n] << endl;    }}

3.

#include<iostream>#include<cstdio>#include<algorithm>#include<cstring>using namespace std;int dp[1005],sum[1005];struct bulb{    int v,k,c,l;}a[1005];bool cmp(bulb a,bulb b){    return a.v<b.v;}int main(){    int n;    while(cin >> n&&n)    {        for(int i=1;i<=n;i++)        cin >> a[i].v >> a[i].k >> a[i].c >> a[i].l;        sort(a+1,a+n+1,cmp);        sum[0]=0;        for(int i=1;i<=n;i++)        sum[i]=sum[i-1]+a[i].l;        memset(dp,0x3f,sizeof(dp));        dp[0]=0;             //没加这一行导致wa!!!         for(int i=1;i<=n;i++)          for(int j=0;j<i;j++)          dp[i]=min(dp[i],dp[j]+(sum[i]-sum[j])*a[i].c+a[i].k);     cout << dp[n] << endl;    }}

第2,3种区别不大,第1,2的区别是j的范围。

0 0
原创粉丝点击