hdu 2191 悼念512汶川大地震遇难同胞——珍惜现在,感恩生活 单调队列优化dp

/* *********************************************** Author :xryz Email :[email protected] Created Time :2015/10/23 14:47:13 File Name :0001.cpp ************************************************ */

#include <stdio.h>
#include <string.h>
#include <iostream>
#include <algorithm>
#include <vector>
#include <queue>
#include <set>
#include <map>
#include <string>
#include <math.h>
#include <stdlib.h>
#include <time.h>
//#include <bits/stdc++.h>
using namespace std;

int main()
{
    //freopen("in.txt","r",stdin);
    //freopen("out.txt","w",stdout);
   int _,i,j,n,m,a[100+5],b[100+5],f[100+5];
   int h,t,w,v,c,k,d,now;
   scanf("%d",&_);
   while(_--)
   {
       scanf("%d%d",&n,&m);
       memset(f,0,sizeof(f));
       for(i=0;i<m;i++)
       {
           scanf("%d%d%d",&v,&w,&k);
            //k=min(k,n/v);
            for(d=0;d<v;d++)
            {
                h=t=0;
                for(j=0;j<=(n-d)/v;j++)
                {
                    now=f[j*v+d]-j*w;
                    while(h<t&&b[t-1]<now)
                        t--;
                    a[t]=j;
                    b[t++]=now;
                    while(a[h]<j-k) h=h+1;
                    f[j*v+d]=max(b[h]+j*w,f[j*v+d]);
                }
            }
       }
       printf("%d\n",f[n]);
   }
    return 0;
}

你可能感兴趣的:(hdu 2191 悼念512汶川大地震遇难同胞——珍惜现在,感恩生活 单调队列优化dp)