• P2900 [USACO08MAR]土地征用Land Acquisition


    Link

    题目描述

    Farmer John is considering buying more land for the farm and has his eye on N (1 <= N <= 50,000) additional rectangular plots, each with integer dimensions (1 <= width_i <= 1,000,000; 1 <= length_i <= 1,000,000).

    If FJ wants to buy a single piece of land, the cost is $1/square unit, but savings are available for large purchases. He can buy any number of plots of land for a price in dollars that is the width of the widest plot times the length of the longest plot. Of course, land plots cannot be rotated, i.e., if Farmer John buys a 3x5 plot and a 5x3 plot in a group, he will pay 5x5=25.

    FJ wants to grow his farm as much as possible and desires all the plots of land. Being both clever and frugal, it dawns on him that he can purchase the land in successive groups, cleverly minimizing the total cost by grouping various plots that have advantageous width or length values.

    Given the number of plots for sale and the dimensions of each, determine the minimum amount for which Farmer John can purchase all

    约翰准备扩大他的农场,眼前他正在考虑购买N块长方形的土地。如果约翰单买一块土 地,价格就是土地的面积。但他可以选择并购一组土地,并购的价格为这些土地中最大的长 乘以最大的宽。比如约翰并购一块3 × 5和一块5 × 3的土地,他只需要支付5 × 5 = 25元, 比单买合算。 约翰希望买下所有的土地。他发现,将这些土地分成不同的小组来并购可以节省经费。 给定每份土地的尺寸,请你帮助他计算购买所有土地所需的最小费用。

    输入输出格式

    输入格式:

    * Line 1: A single integer: N

    * Lines 2..N+1: Line i+1 describes plot i with two space-separated integers: width_i and length_i

    输出格式:

    * Line 1: The minimum amount necessary to buy all the plots.

    输入输出样例

    输入样例#1: 复制
    4 
    100 1 
    15 15 
    20 5 
    1 100 
    
    输出样例#1: 复制
    500 
    

    说明

    There are four plots for sale with dimensions as shown.

    The first group contains a 100x1 plot and costs 100. The next group contains a 1x100 plot and costs 100. The last group contains both the 20x5 plot and the 15x15 plot and costs 300. The total cost is 500, which is minimal.

    --- $Sol:$

    可以发现对于两块土地$i$和$j$,如果$h[j]$ge h[i]&&$l[j]ge l[i]$,那么$i$这块土地是可以被$j$一块并购的,对答案没有影响。所以我们把土地按照$l[]$升序排序,然后一个个加入栈中,如果当前土地的$h$和$l$都比栈顶大,那么就把栈顶弹出,然后加入当前土地。可以发现我们最后得到的土地序列,$l[]$是递增的,$h[]$是递减的。 那么我们列出状态转移方程: $f[i]=minleft(f[j]+l[i]*h[j+1] ight)$ 对于$k>j$,若$k$比$j$优,则有 $f[k]+l[i]*h[k+1]<=f[j]+l[i]*h[j+1]$ $Rightarrow f[k]-f[j]<=l[i]*left(h[j+1]-h[k+1] ight)$ 然后就可以用斜率优化了

    #include<iostream>
    #include<cstdio>
    #include<cmath>
    #include<cstring>
    #include<algorithm>
    using namespace std;
    
    typedef long long LL;
    
    inline int read()
    {
        char c=getchar();int num=0,f=1;
        for(;!isdigit(c);c=getchar())
            f=c=='-'?-1:f;
        for(;isdigit(c);c=getchar())
            num=num*10+c-'0';
        return num*f;
    }
    
    const int N=1e6+5;
    
    int n;
    LL f[N];
    int q[N],h,t;
    LL a[N],b[N],top;
    
    struct Line
    {
        int a,b;
        bool operator < (const Line &A) const
        {
            return a==A.a?b<A.b:a<A.a;
        }
    }line[N];
    
    inline LL Y(int k,int j)
    {
        return f[k]-f[j];
    }
    
    inline LL X(int k,int j)
    {
        return b[j+1]-b[k+1];
    }
    
    int main()
    {
        n=read();
        for(int i=1;i<=n;++i)
            line[i].a=read(),line[i].b=read();
        sort(line+1,line+n+1);
        a[top=1]=line[1].a,b[top]=line[1].b;
        for(int i=2;i<=n;++i)
        {
            while(top&&line[i].a>=a[top]&&line[i].b>=b[top])
                --top;
            a[++top]=line[i].a,b[top]=line[i].b;
        }
        for(int i=1;i<=top;++i)
        {
            while(h<t&&Y(q[h+1],q[h])<=a[i]*X(q[h+1],q[h])) ++h;
            f[i]=f[q[h]]+a[i]*b[q[h]+1];
            while(h<t&&Y(i,q[t])*X(q[t],q[t-1])<=Y(q[t],q[t-1])*X(i,q[t])) --t;
            q[++t]=i;
        }
        cout<<f[top];
        return 0;
    }

     

  • 相关阅读:
    laravel 服务提供者
    乐观锁和悲观锁
    MySQL索引原理及慢查询优化
    Laravel Session保存机制和terminate中间件
    laravel session踩坑
    理解 JavaScript 的 async/await(转)
    知识点
    js异步
    Office使用笔记
    YUM常用命令
  • 原文地址:https://www.cnblogs.com/lovewhy/p/10100503.html
Copyright © 2020-2023  润新知