UVA11400-Lighting System Design(动态规划基础)

Problem UVA11400-Lighting System Design

Accept: 654  Submit: 4654
Time Limit: 3000 mSec

Problem Description

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

题解:dp[i]表示前i种灯的最小花费并且i这种灯的电源被使用了,那么状态转移就很简单了,就是前j种(j<i)灯的最小花费,加上从j+1到i种灯的最小花费。

 1 #include <bits/stdc++.h>
 2 
 3 using namespace std;
 4 
 5 const int maxn = 1000 + 10;
 6 const int INF = 0x3f3f3f3f;
 7 
 8 int n;
 9 int sum[maxn], dp[maxn];
10 
11 struct Lamp {
12     int v, k, c, l;
13     bool operator < (const Lamp &a)const {
14         return v < a.v;
15     }
16 }lamp[maxn];
17 
18 int main()
19 {
20     //freopen("input.txt", "r", stdin);
21     while (~scanf("%d", &n) && n) {
22         for (int i = 1; i <= n; i++) {
23             scanf("%d%d%d%d", &lamp[i].v, &lamp[i].k, &lamp[i].c, &lamp[i].l);
24         }
25         sort(lamp + 1, lamp + n + 1);
26 
27         memset(dp, INF, sizeof(dp));
28         sum[0] = dp[0] = 0;
29         for (int i = 1; i <= n; i++) {
30             sum[i] = sum[i - 1] + lamp[i].l;
31         }
32         for (int i = 1; i <= n; i++) {
33             for (int j = 0; j < i; j++) {
34                 dp[i] = min(dp[i], dp[j] + (sum[i] - sum[j])*lamp[i].c + lamp[i].k);
35             }
36         }
37 
38         printf("%d
", dp[n]);
39     }
40     return 0;
41 }
原文地址:https://www.cnblogs.com/npugen/p/9732264.html