2014 Super Training #2 C Robotruck --單調隊列最佳化DP

來源:互聯網
上載者:User

標籤:style   blog   http   color   width   os   

原題: UVA 1169  http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=3610

大白書上的原題。

 

代碼:

#include <iostream>#include <cstdio>#include <cstring>#include <cmath>#include <algorithm>using namespace std;#define N 100007int dp[N],T[N];int dis[N],wt[N];int que[N];struct Point{    int x,y,w;}p[N];int f(int j){    return dp[j]-T[j+1]+dis[j+1];}int DIS(int i,int j){    return abs(p[i].x-p[j].x) + abs(p[i].y-p[j].y);}int main(){    int t,C,n,i,j;    scanf("%d",&t);    while(t--)    {        scanf("%d",&C);        scanf("%d",&n);        memset(que,0,sizeof(que));        wt[0] = 0;        T[0] = 0;        p[0].x = p[0].y = p[0].w = 0;        for(i=1;i<=n;i++)        {            scanf("%d%d%d",&p[i].x,&p[i].y,&p[i].w);            wt[i] = wt[i-1] + p[i].w;            T[i] = T[i-1] + DIS(i,i-1);            dis[i] = DIS(i,0);        }        int head = 0;        int tail = 0;        for(i=1;i<=n;i++)        {            while(head <= tail && wt[i]-wt[que[head]] > C)                head++;            dp[i] = f(que[head]) + T[i] + dis[i];            int fi = f(i);            while(head <= tail && fi <= f(que[tail]))                tail--;            que[++tail] = i;        }        printf("%d\n",dp[n]);        if(t)            puts("");    }    return 0;}
View Code

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.