HDU - 4122 Alice's mooncake shop 单调队列

 

题字:给你n份订单m小时制作yuebing

          n行订单的时间(月日年小时)和需要月饼的数量r

         每个月饼的保质期为t放冰箱每小时需要s的代价

         给出0-m-1每小时制作月饼的代价

         求完成所有月饼所需的代价

思路:将订单的时间先换算成小时

           根据米个小时的不同加葛

           第i个小时的月饼订单是(it,i)这个区间的做月饼最小的代价min(费用【i】,费用【k】+(ik)* s)

           所以我们要维护i区间前的最小值=维护一个单调递增的队列

          ACcode:

#include
using namespace std;
const int maxn = 1000010;
int Date[15]={0,31,28,31,30,31,30,31,31,30,31,30,31};
struct node{
    int num,time;
}order[maxn];
int dpmax[maxn];//维护一个单调递增的队列
int cost[maxn];
int Month(char month[]){
    if(strcmp(month,"Jan") == 0)  return 1;
    if(strcmp(month,"Feb") == 0)  return 2;
    if(strcmp(month,"Mar") == 0)  return 3;
    if(strcmp(month,"Apr") == 0)  return 4;
    if(strcmp(month,"May") == 0)  return 5;
    if(strcmp(month,"Jun") == 0)  return 6;
    if(strcmp(month,"Jul") == 0)  return 7;
    if(strcmp(month,"Aug") == 0)  return 8;
    if(strcmp(month,"Sep") == 0)  return 9;
    if(strcmp(month,"Oct") == 0)  return 10;
    if(strcmp(month,"Nov") == 0)  return 11;
    if(strcmp(month,"Dec") == 0)  return 12;
} 
inline int Flag(int year){ //闰年
    return (year%4 == 0 && year%100 != 0)|| year % 400 == 0;
}
inline int Time(int year ,int month,int day,int hour){
    int res=0;
    for(int i=2000;i= cost[i] ) maxend--;  //假如队尾的代价 大于 当前代价 出队
            dpmax[maxend++]=i;
            while(now <= n && i == order[now].time){
                while(t+dpmax[maxtop] < i )  maxtop++; //保证最小的代价是在保质期内
                ans+=order[now].num*(cost[ dpmax[maxtop] ] + (i-dpmax[maxtop])*s);
                now++;
            }
        }
        printf("%lld\n",ans);
    }
    return 0;
}

 

你可能感兴趣的:(#,其他)