题意: 一个月饼店做月饼,总营业时间m小时,只能在整点做月饼,可以做无限个,不过在不同的时间做月饼的话每个月饼的花费是不一样的,假设即为cost[i],再给n个订单,即为在某个时间要多少个月饼,时间从2000年1月1日0时开始计算,必须在每个订单的时间之前完成这么多月饼,月饼还有保质期T小时以及保存费用S每小时,现在问满足这n个点的最小成本是多少。

解法:

因为月饼有保质期T,所以第i个月饼只能在[Ti-T+1,Ti]时间内做好。
如果时间j有订单,假设在时间i做月饼是最好的,那么这个订单每个月饼的
花费为 cost[i] + (j-i)*S = cost[i]-i*S + j*S, 由于j不变,所以求cost[i]-i*S的
最小值即可,即求[Ti-T+1,Ti]内的cost[i]-i*S最小值,求区间最小值我们用RMQ可以快速求出
这里RMQ用了一个Log函数优化,使得到k的时间复杂度为O(1)
这里的月份处理采用了kuangbin大神的模板,简洁又好用。

代码:

#include <iostream>
#include <cstdio>
#include <cstring>
#include <cstdlib>
#include <cmath>
#include <algorithm>
#define lll __int64
using namespace std;
#define N 100017 lll d[N][],cost[N];
int LOG[N],n; int getmonth(char s[])
{
if(strcmp(s,"Jan") == ) return ;
if(strcmp(s,"Feb") == ) return ;
if(strcmp(s,"Mar") == ) return ;
if(strcmp(s,"Apr") == ) return ;
if(strcmp(s,"May") == ) return ;
if(strcmp(s,"Jun") == ) return ;
if(strcmp(s,"Jul") == ) return ;
if(strcmp(s,"Aug") == ) return ;
if(strcmp(s,"Sep") == ) return ;
if(strcmp(s,"Oct") == ) return ;
if(strcmp(s,"Nov") == ) return ;
if(strcmp(s,"Dec") == ) return ;
}
int days[] = {,,,,,,,,,,,,};
bool isleap(int y)
{
if(y % == || (y % != && y% == ))return true;
else return false;
}
struct Node
{
char mon[];
int d,y,h,R;
lll tim;
void input()
{
scanf("%s%d%d%d%d",mon,&d,&y,&h,&R);
tim = ;
for(int i = ;i < y;i++)
{
if(isleap(i)) tim += *;
else tim += *;
}
for(int i = ;i < getmonth(mon);i++)
tim += days[i]*;
if(isleap(y) && getmonth(mon) > ) tim += ;
tim += (d-)*;
tim += h+;
}
}order[]; void RMQ_init(int m)
{
int i,j;
for(i=;i<=m;i++)
d[i][] = cost[i];
for(j=;(<<j)<=m;j++)
{
for(i=;i+(<<j)-<=m;i++)
d[i][j] = min(d[i][j-],d[i+(<<(j-))][j-]);
}
}
void getLog(int n)
{
for(int i=;i<=n;i++)
LOG[i] = (int)(log((double)i)/log(2.0));
}
lll RMQ(int l,int r)
{
int k = LOG[r-l+];
return min(d[l][k],d[r-(<<k)+][k]);
} int main()
{
int n,m,T,S,i,j;
while(scanf("%d%d",&n,&m)!=EOF && n+m)
{
getLog(m);
for(i=;i<=n;i++)
order[i].input();
scanf("%d%d",&T,&S);
for(i=;i<=m;i++)
{
scanf("%I64d",&cost[i]);
cost[i] -= i*S;
}
RMQ_init(m);
lll ans = ;
for(i=;i<=n;i++)
{
if(order[i].tim < || order[i].tim > m) continue;
int L = max(1LL,order[i].tim - T + );
int R = order[i].tim;
lll MN = RMQ(L,R);
ans += (MN+order[i].tim*S)*order[i].R;
}
cout<<ans<<endl;
}
return ;
}

HDU 4122 Alice's mooncake shop --RMQ的更多相关文章

  1. hdu 4122 Alice's mooncake shop(单调队列)

    题目链接:hdu 4122 Alice's mooncake shop 题意: 有n个订单和可以在m小时内制作月饼 接下来是n个订单的信息:需要在mon月,d日,year年,h小时交付订单r个月饼 接 ...

  2. HDU 4122 Alice's mooncake shop (RMQ)

    Alice's mooncake shop Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Ot ...

  3. HDU 4122 Alice's mooncake shop 单调队列优化dp

    Alice's mooncake shop Time Limit: 20 Sec Memory Limit: 256 MB 题目连接 http://acm.hdu.edu.cn/showproblem ...

  4. HDU 4122 Alice's mooncake shop (单调队列/线段树)

    传送门:http://acm.hdu.edu.cn/showproblem.php?pid=4122 题意:好难读懂,读懂了也好难描述,亲们就自己凑合看看题意把 题解:开始计算每个日期到2000/1/ ...

  5. HDU 4122 Alice's mooncake shop

    单调队列,裸的!!坑死了,说好的“All the orders are sorted by the time in increasing order. 呢,我就当成严格上升的序列了,于是就各种错.测试 ...

  6. 【HDOJ】4122 Alice's mooncake shop

    RMQ的基础题目,简单题. /* 4122 */ #include <iostream> #include <sstream> #include <string> ...

  7. hdu 4122 Alice&#39;s mooncake shop (线段树)

    题目大意: 一个月饼店每一个小时做出月饼的花费不一样. 储存起来要钱.最多存多久.问你把全部订单做完的最少花费. 思路分析: ans = segma( num[]*(cost[] + (i-j)*s) ...

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

    题意: 有n个订单和可以在m小时内制作月饼,制作月饼不考虑时间(即,你可以在一个时刻在所有需要的月饼都做完) 接下来是n个订单的信息:需要在mon月,d日,year年,h小时交付订单r个月饼 接下来一 ...

  9. HDU 4122

    Alice's mooncake shop Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Ot ...

随机推荐

  1. 非线性数据拟合-nls

    code{white-space: pre;} pre:not([class]) { background-color: white; }if (window.hljs && docu ...

  2. Convert string to binary and binary to string in C#

    String to binary method: public static string StringToBinary(string data) { StringBuilder sb = new S ...

  3. C#生成条形码 Code128算法

    条形有很多种,Code128是比较常用的一种,是一种高密度条码, CODE128 码可表示从 ASCII 0 到ASCII 127 共128个字符,故称128码.其中包含了数字.字母和符号字符. Co ...

  4. Vue表单

    gitHub地址: https://github.com/lily1010/vue_learn/tree/master/lesson11 一 vue表单 实在是太简单了,直接来个例子 <!DOC ...

  5. 用jq编码解码一个url地址

    介绍一下编码解码函数对 1.    escape /unescape   主要用于汉字编码,返回字符的unicode编码值, 对“+”不能编码 2.     encodeURI / decodeURI ...

  6. andriod 读取网络图片

    来自:http://blog.csdn.net/jianghuiquan/article/details/8641283 Android手机上,我们常用ImageView显示图片,我们本章获取网络图片 ...

  7. 高性能JS笔记1——加载执行

    一.脚本位置 1.Script标签尽可能放到Body底部,以减少脚本文件下载对整个页面UI渲染的影响. 2.Script标签永远不要紧跟Link标签后面. 二.组织脚本 1.合并多个文件在一个Scri ...

  8. SPJS Upload for SharePoint: Custom upload page for uploading documents to various document libraries in a site collection

    http://spjsblog.com/2013/12/08/spjs-upload-for-sharepoint-custom-upload-page-for-uploading-documents ...

  9. android 打包错误

    打包时报如下错误: Export aborted because fatal lint errors were found. These are listed in the Lint View. Ei ...

  10. Android项目结构分析

    andriod项目目录结构如下图: 1. src目录 该目录一个普通的保存java源文件的目录,其和普通java工程中的src目录是一样的. 2. gen目录 此目录用于存放所有由ADT插件自动生成的 ...