zoukankan      html  css  js  c++  java
  • 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 }
  • 相关阅读:
    转载:从51CTO转来的两篇关于SQL的文章
    转载:几万年前,有一只猴子大闹地府后删库跑路...
    【java/oralce/sql】往一张仅有id,名称,创建时间三个字段的表中插入百万数据需要多久?1分26秒
    处处留心皆学问
    [oracle/java/sql]用于上十万批量数据插入Oracle表的Java程序
    Linux学习_003_虚拟机CentOS 7.5 如何固定IP地址
    Linux学习_002_VMware12.0 Pro 中安装 CentOS-7.5(桌面版)
    Linux学习_001_VMware10.0 && VMware12.0 Pro && VMware14.0 Pro && VMware 15.0 Pro 的安装与破解
    day76_淘淘商城项目_09_商品详情页动态展示实现(jsp+redis) + FreeMarker模板引擎入门 + 商品详情页静态化实现(Win版本的nginx作http服务器)_匠心笔记
    Eclipse注释模板设置详解
  • 原文地址:https://www.cnblogs.com/npugen/p/9732264.html
Copyright © 2011-2022 走看看