bzoj 3379: [Usaco2004 Open]Turning in Homework 交作业

Posted Nico&11101001

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了bzoj 3379: [Usaco2004 Open]Turning in Homework 交作业相关的知识,希望对你有一定的参考价值。

http://www.lydsy.com/JudgeOnline/problem.php?id=3379

 

区间dp,dp[i][j][0/1]表示剩余区间[i,j]没选,1表示此事在i处,0表示此时在j处

1/0两种状态均可由上次的1/0转移,每次可转的时间为max(上次时间+路程时间,开门时间)

#include<cstdio>
#include<cstring>
#include<algorithm>

const int maxn = 1007;
inline int read() {
    int x=0;
    char c=getchar();
    while(c<0||c>9)c=getchar();
    while(c<=9&&c>=0)x=x*10+c-0,c=getchar();
    return x;
}
struct node{
    int x,t;
    bool operator < (const node &a)const {
        return x<a.x;}
}a[maxn];
int dp[maxn][maxn][2];
int main() {
    int c=read(),h=read(),b=read();
    for(int i=1;i<=c;++i)a[i].x=read(),a[i].t=read();
    std::sort(a+1,a+c+1);
    memset(dp,0x3f,sizeof dp);
    dp[1][c][0]=std::max(a[1].x,a[1].t);dp[1][c][1]=std::max(a[c].x,a[c].t);
    for(int i=1;i<=c;++i) {
        for(int j=c;j>=i;--j) {
            dp[i][j][0]=std::min(dp[i][j][0],std::max(dp[i-1][j][0]+a[i].x-a[i-1].x,a[i].t));
            dp[i][j][0]=std::min(dp[i][j][0],std::max(dp[i][j+1][1]+a[j+1].x-a[i].x,a[i].t));
            dp[i][j][1]=std::min(dp[i][j][1],std::max(dp[i-1][j][0]+a[j].x-a[i-1].x,a[j].t));
            dp[i][j][1]=std::min(dp[i][j][1],std::max(dp[i][j+1][1]+a[j+1].x-a[j].x,a[j].t));
        }
    }
    int ans=0x7fffffff;//-11101001;
    for(int i=1;i<=c;++i) {
        ans=std::min(ans,std::min(dp[i][i][0]+abs(b-a[i].x),dp[i][i][0]+abs(b-a[i].x)));
    }
    printf("%d\n",ans);
    return 0;
}
    

 

以上是关于bzoj 3379: [Usaco2004 Open]Turning in Homework 交作业的主要内容,如果未能解决你的问题,请参考以下文章

BZOJ 3379: [Usaco2004 Open]Turning in Homework 交作业

BZOJ 3357: [Usaco2004]等差数列

bzoj 3357: [Usaco2004]等差数列

bzoj3355[Usaco2004 Jan]有序奶牛*

BZOJ 3390 Usaco2004 Dec Bad Cowstractors 牛的报复

Bzoj 3389: [Usaco2004 Dec]Cleaning Shifts安排值班 最短路,神题