LG2893/POJ3666 「USACO2008FEB」Making the Grade 线性DP+决策集优化

问题描述

LG2893

POJ3666


题解

对于\(A\)中的每一个元素,都将存在于\(B\)中。

\(A\)离散化。

\(opt_{i,j}\)代表\([1,i]\),结尾为\(j\)的最小代价。

\[opt_{i,j}=min_{k \in [1,m]} {opt_{i-1,k}+ |a_i-k|}\]


\(\mathrm{Code}\)

#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;

void read(int &x){
    x=0;char ch=1;int fh;
    while(ch!='-'&&(ch>'9'||ch<'0')) ch=getchar();
    if(ch=='-') ch=getchar(),fh=-1;
    else fh=1;
    while(ch>='0'&&ch<='9') x=(x<<1)+(x<<3)+ch-'0',ch=getchar();
    x*=fh;
}

const int maxn=2000+7;
const int INF=0x3f3f3f3f;

int m,n,b[maxn],a[maxn],c[maxn];
int opt[maxn][maxn];
int ans=INF;

void preprocess(){
    sort(b+1,b+n+1);
    m=unique(b+1,b+n+1)-b-1;
}

int main(){
    read(n);
    for(int i=1;i<=n;i++){
        read(a[i]);b[i]=a[i];
    }
    memset(opt,0x3f,sizeof(opt));
    preprocess();
    opt[0][0]=0;
    for(int i=1;i<=n;i++){
        int val=opt[i-1][0];
        for(int j=1;j<=m;j++){
            val=min(val,opt[i-1][j]);
            opt[i][j]=val+abs(a[i]-b[j]);
        }
    }
    for(int i=1;i<=m;i++) ans=min(ans,opt[n][i]);
    printf("%d\n",ans);
    return 0;
}

转载于:https://www.cnblogs.com/liubainian/p/11564539.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值