标签:
http://acm.hdu.edu.cn/showproblem.php?pid=4122

1 10 Jan 1 2000 9 10 5 2 20 20 20 10 10 8 7 9 5 10 0 0
70Hint“Jan 1 2000 9 10” means in Jan 1st 2000 at 9 o‘clock , there‘s a consumer ordering 10 mooncakes. Maybe you should use 64-bit signed integers. The answer will fit into a 64-bit signed integer.
/**
hdu 4122 单调队列
题目大意:给定n个时刻,在每一个时刻都要生产ai个月饼。给出m个可以生产的时刻,每个时刻单个生产费用为bi,单个月饼可储存T时间,单位时间费用为S
问如何安排生产花费最少
解题思路:用单调队列维护一个点之前所有点的最小花费(为生产费+储存费)
特别注意:n个时刻可能有重复的
*/
#include <string.h>
#include <algorithm>
#include <iostream>
#include <stdio.h>
#include <map>
using namespace std;
typedef long long LL;
map<string,int>mp;
int n,m,time[3050],sum[15],S,T,cost[100050],q[100050];
LL num[3000];
void init()
{
mp["Jan"]=1,mp["Feb"]=2,mp["Mar"]=3,mp["Apr"]=4,mp["May"]=5,mp["Jun"]=6,mp["Jul"]=7,mp["Aug"]=8;
mp["Sep"]=9,mp["Oct"]=10,mp["Nov"]=11,mp["Dec"]=12;
sum[0]=0,sum[1]=31,sum[2]=sum[1]+28,sum[3]=sum[2]+31,sum[4]=sum[3]+30,sum[5]=sum[4]+31,sum[6]=sum[5]+30;
sum[7]=sum[6]+31,sum[8]=sum[7]+31,sum[9]=sum[8]+30,sum[10]=sum[9]+31,sum[11]=sum[10]+30;
}
int get(int y,int m,int d,int t)
{
int ans=0;
for(int i=2000; i<y; i++)
{
if((i%4==0&&i%100!=0)||i%400==0)
ans+=366;
else
ans+=365;
}
if((y%4==0&&y%100!=0)||y%400==0)
{
ans+=sum[m-1];
if(m-1>=2)ans++;
}
else
{
ans+=sum[m-1];
}
ans+=(d-1);
return ans*24+t;
}
int main()
{
init();
while(~scanf("%d%d",&n,&m))
{
if(n==0&&m==0)break;
for(int i=0; i<n; i++)
{
int year,day,t;
char mon[10];
scanf("%s%d%d%d%I64d",mon,&day,&year,&t,&num[i]);
time[i]=get(year,mp[mon],day,t);
//printf("->%d\n",time[i]);
}
scanf("%d%d",&T,&S);
int tail=0,head=0,k=0;
LL cnt=0;
for(int i=0; i<m; i++)
{
scanf("%d",&cost[i]);
while(head<tail&&cost[q[tail-1]]+S*(i-q[tail-1])>=cost[i])tail--;
q[tail++]=i;
while(i==time[k])
{
while(head+1<tail&&(i-q[head]>T))head++;
//printf("%d==>>%d\n",i,q[head]);
cnt+=num[k]*(cost[q[head]]+S*(i-q[head]));
k++;
}
}
printf("%I64d\n",cnt);
}
return 0;
}
/**
2 10
Jan 1 2000 2 10
Jan 1 2000 9 10
5 2
20
20
20
10
10
8
7
9
5
10
0 0
*/
版权声明:本文为博主原创文章,未经博主允许不得转载。
标签:
原文地址:http://blog.csdn.net/lvshubao1314/article/details/46910271