zoukankan      html  css  js  c++  java
  • HDU 6024 Building Shops(DP)

    Building Shops

    Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 131072/131072 K (Java/Others)
    Total Submission(s): 889    Accepted Submission(s): 343


    Problem Description
    HDU’s n classrooms are on a line ,which can be considered as a number line. Each classroom has a coordinate. Now Little Q wants to build several candy shops in these n classrooms.

    The total cost consists of two parts. Building a candy shop at classroom i would have some cost ci. For every classroom P without any candy shop, then the distance between P and the rightmost classroom with a candy shop on P's left side would be included in the cost too. Obviously, if there is a classroom without any candy shop, there must be a candy shop on its left side.

    Now Little Q wants to know how to build the candy shops with the minimal cost. Please write a program to help him.
     

    Input
    The input contains several test cases, no more than 10 test cases.
    In each test case, the first line contains an integer n(1n3000), denoting the number of the classrooms.
    In the following n lines, each line contains two integers xi,ci(109xi,ci109), denoting the coordinate of the i-th classroom and the cost of building a candy shop in it.
    There are no two classrooms having same coordinate.
     

    Output
    For each test case, print a single line containing an integer, denoting the minimal cost.
     

    Sample Input
    3 1 2 2 3 3 4 4 1 7 3 1 5 10 6 1
     

    Sample Output
    5 11
     

    Source

    2017中国大学生程序设计竞赛 - 女生专场



    #include<iostream>
    #include<algorithm>
    #include<cmath>
    #include<cstdio>
    #include<cstdlib>
    #include<queue>
    #include<map>
    #include<set>
    #include<stack>
    #include<bitset>
    #include<numeric>
    #include<vector>
    #include<string>
    #include<iterator>
    #include<cstring>
    #include<ctime>
    #include<functional>
    #define INF 0x3f3f3f3f
    #define ms(a,b) memset(a,b,sizeof(a))
    #define pi 3.14159265358979
    #define MOD 1000000007
    #define lson l,m,rt<<1
    #define rson m+1,r,rt<<1|1
    using namespace std;
    
    typedef pair<int, int> P;
    typedef long long ll;
    typedef unsigned long long ull;
    const int maxn = 3010;
    
    struct Node {
    	ll x, c;
    }a[maxn];
    
    ll dp[maxn][maxn];
    
    bool cmp(Node a, Node b)
    {
    	return a.x < b.x;
    }
    
    int main()
    {
    		int n;
    		while (~scanf("%d", &n))
    		{
    			for (int i = 1; i <= n; i++)
    			{
    				scanf("%lld%lld", &a[i].x, &a[i].c);
    			}
    			sort(a + 1, a + 1 + n, cmp);
    			ms(dp, INF);
    			dp[1][1] = a[1].c;
    			for (int i = 2; i <= n; i++)
    			{
    				for (int j = 1; j < i; j++)
    				{
    					dp[i][i] = min(dp[i][i], dp[i - 1][j] + a[i].c);
    					dp[i][j] = min(dp[i][j], dp[i - 1][j] + (a[i].x - a[j].x));
    				}
    			}
    			ll ans = INF;
    			for (int i = 1; i <= n; i++)
    			{
    				ans = min(ans, dp[n][i]);
    			}
    			printf("%lld
    ", ans);
    
    		}
    		
    }



    Fighting~
  • 相关阅读:
    POJ1125-Stockbroker Grapevine【Floyd】(模板题)
    Codeforces 862B (二分图染色)
    hdu3047 Zjnu Stadium【带权并查集】
    HDU1532 网络流最大流【EK算法】(模板题)
    hdu 2063 过山车【匈牙利算法】(经典)
    HDU-2066-一个人的旅行 【Dijkstra】
    HDU 3625 Examining the Rooms【第一类斯特灵数】
    HDU4372-Count the Buildings【第一类Stirling数】+【组合数】
    HDU 6114 Chess【逆元+组合数】(组合数模板题)
    HDU1211 密文解锁 【扩展欧几里得】【逆元】
  • 原文地址:https://www.cnblogs.com/Archger/p/8451649.html
Copyright © 2011-2022 走看看