Uva11400 Lighting System Design

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

https://odzkskevi.qnssl.com/f5dee0f4dce3f985ad28c4aa7e71b78e?v=1507811318

 【题解】

dp[i]表示前i种灯具的最小花费

转移即可。。

注意细节

 1 #include <iostream>
 2 #include <cstdlib>
 3 #include <cstring>
 4 #include <algorithm>
 5 #include <cstdio>
 6 #define max(a, b) ((a) > (b) ? (a) : (b))
 7 #define min(a, b) ((a) < (b) ? (a) : (b))
 8 
 9 inline void read(int &x)
10 {
11     x = 0;char ch = getchar(), c = ch;
12     while(ch < '0' || ch > '9')c = ch, ch = getchar();
13     while(ch <= '9' && ch >= '0')x = x * 10 + ch - '0', ch = getchar();
14     if(c == '-')x = - x;
15 }
16 
17 const int INF = 0x3f3f3f3f;
18 const int MAXN = 1000 + 10;
19 
20 int n, sum[MAXN], dp[MAXN];
21 
22 struct Node
23 {
24     int v,k,c,l;
25 }node[MAXN];
26 
27 int cmp(Node a, Node b)
28 {
29     return a.v < b.v;
30 } 
31 
32 int main()
33 {
34     while(scanf("%d", &n) != EOF && n)
35     {
36         memset(sum, 0, sizeof(sum));
37         memset(dp, 0, sizeof(dp));
38         memset(node, 0, sizeof(node));
39         for(register int i = 1;i <= n;++ i)
40             read(node[i].v), read(node[i].k), read(node[i].c), read(node[i].l);
41         std::sort(node + 1, node + 1 + n, cmp);
42         for(register int i = 1;i <= n;++ i)
43             sum[i] = sum[i - 1] + node[i].l;
44         for(register int i = 1;i <= n;++ i)
45         {
46             dp[i] = INF;
47             for(register int j = 0;j <= i;++ j)
48                 dp[i] = min(dp[i], dp[j] + (sum[i] - sum[j]) * node[i].c + node[i].k);
49         }
50         printf("%d
", dp[n]);
51     }
52     return 0;
53 } 
Uva11400
原文地址:https://www.cnblogs.com/huibixiaoxing/p/7685205.html