Codeforces1579 G. Minimal Coverage(dp的状态设计)

Posted live4m

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Codeforces1579 G. Minimal Coverage(dp的状态设计)相关的知识,希望对你有一定的参考价值。

题意:

解法:

容易往dp方向想.

这题的状态设计不错,学到了.

首先发现题目中a[i]<=1000,自己手玩了一下可以知道答案肯定是<=2000.

一个思维坑点是状态设计和坐标无关.

假设当前覆盖的区间长度为L,而ed点可能在区间的任意一个位置,
为了取得答案,需要满足能够从dp数组取得L,
为了能够转移,需要满足能够从dp数组取得ed点的位置.
为了ac这道题,需要满足dp数组大小不能太大,即状态不能太复杂.

令d[i][j]表示ed点距离区间左端点距离为j,距离右端点的最小距离.
这样表示状态的话:
L=j+d[i][j],
ed=j,
空间O(n*2000),或者滚动一下变为O(2000).
完美满足上述要求.

转移就比较简单了,对于d[i][j],考虑下一条线段放ed点的左边还是右边即可.
由于一开始我们就推出了答案<=2000,
所以可以将j>2000的状态跳过,这样就保证dp数组第二维一定<=2000.

code:

#include<bits/stdc++.h>
#define MULTI_CASE
#define PI pair<int,int>
// #define int long long
using namespace std;
// const int mod=998244353;
const int mod=1e9+7;
const int maxm=2e6+5;
int d[11111][2222];
int a[maxm];
int n;
void solve(){
    cin>>n;
    for(int i=1;i<=n;i++){
        cin>>a[i];
    }
    for(int i=0;i<=n;i++){
        for(int j=0;j<=2000;j++){
            d[i][j]=mod;    //inf
        }
    }
    d[0][0]=0;
    for(int i=0;i<n;i++){
        int x=a[i+1];
        for(int j=0;j<=2000;j++){
            if(d[i][j]==mod)continue;
            //ed向左扩展
            if(j>=x){
                d[i+1][j-x]=min(d[i+1][j-x],d[i][j]+x);
            }else{
                d[i+1][0]=min(d[i+1][0],x+d[i][j]);
            }
            //ed向右扩展
            if(d[i][j]>=x){
                d[i+1][j+x]=min(d[i+1][j+x],d[i][j]-x);
            }else{
        	    //如果超过2000肯定不是最优解,忽略
                if(j+x<=2000){  
                    d[i+1][j+x]=min(d[i+1][j+x],0);
                }
            }
        }
    }
    int ans=mod;
    for(int j=0;j<=2000;j++){
        ans=min(ans,j+d[n][j]);
    }
    cout<<ans<<endl;
}
void Main(){
    #ifdef MULTI_CASE
    int T;cin>>T;while(T--)
    #endif
    solve();
}
void Init(){
    ios::sync_with_stdio(0);cin.tie(0);
    #ifndef ONLINE_JUDGE
    freopen("../in.txt","r",stdin);
    freopen("../out.txt","w",stdout);
    #endif
}
signed main(){
    Init();
    Main();
    return 0;
}

以上是关于Codeforces1579 G. Minimal Coverage(dp的状态设计)的主要内容,如果未能解决你的问题,请参考以下文章

CodeForces - 1579G Minimal Coverage(dp)

CodeForces - 1579G Minimal Coverage(dp)

CodeForces - 1579G Minimal Coverage(dp)

Codeforces G. Ant colony

Codeforces G. Ciel the Commander

Codeforces 954 G. Castle Defense