博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HDU 4122
阅读量:5260 次
发布时间:2019-06-14

本文共 5219 字,大约阅读时间需要 17 分钟。

Alice's mooncake shop

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)

Total Submission(s): 3340    Accepted Submission(s): 843

Problem Description
The Mid-Autumn Festival, also known as the Moon Festival or Zhongqiu Festival is a popular harvest festival celebrated by Chinese people, dating back over 3,000 years to moon worship in China's Shang Dynasty. The Zhongqiu Festival is held on the 15th day of the eighth month in the Chinese calendar, which is in September or early October in the Gregorian calendar. It is a date that parallels the autumnal equinox of the solar calendar, when the moon is at its fullest and roundest. 
The traditional food of this festival is the mooncake. Chinese family members and friends will gather to admire the bright mid-autumn harvest moon, and eat mooncakes under the moon together. In Chinese, “round”(圆) also means something like “faultless” or “reuion”, so the roundest moon, and the round mooncakes make the Zhongqiu Festival a day of family reunion.
Alice has opened up a 24-hour mooncake shop. She always gets a lot of orders. Only when the time is K o’clock sharp( K = 0,1,2 …. 23) she can make mooncakes, and We assume that making cakes takes no time. Due to the fluctuation of the price of the ingredients, the cost of a mooncake varies from hour to hour. She can make mooncakes when the order comes,or she can make mooncakes earlier than needed and store them in a fridge. The cost to store a mooncake for an hour is S and the storage life of a mooncake is T hours. She now asks you for help to work out a plan to minimize the cost to fulfill the orders.
 

 

Input
The input contains no more than 10 test cases. 
For each test case:
The first line includes two integers N and M. N is the total number of orders. M is the number of hours the shop opens. 
The next N lines describe all the orders. Each line is in the following format:
month date year H R
It means that on a certain date, a customer orders R mooncakes at H o’clock. “month” is in the format of abbreviation, so it could be "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov" or "Dec". H and R are all integers. 
All the orders are sorted by the time in increasing order. 
The next line contains T and S meaning that the storage life of a mooncake is T hours and the cost to store a mooncake for an hour is S.
Finally, M lines follow. Among those M lines, the i
th line( i starts from 1) contains a integer indicating the cost to make a mooncake during the i
th hour . The cost is no more than 10000. Jan 1st 2000 0 o'clock belongs to the 1
st hour, Jan 1st 2000 1 o'clock belongs to the 2
nd hour, …… and so on.
(0<N <= 2500; 0 < M,T <=100000; 0<=S <= 200; R<=10000 ; 0<=H<24)
The input ends with N = 0 and M = 0.
 

 

Output
You should output one line for each test case: the minimum cost. 
 

 

Sample Input
1 10 Jan 1 2000 9 10 5 2 20 20 20 10 10 8 7 9 5 10 0 0
 

 

Sample Output
70
Hint
“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.
 

 

Source
 

 

Recommend
lcy

 开始没读懂题意,后来闰年天数弄错了,再后来二月天数弄错了,最后没有清零,最终A的时候我也是醉了。。。

单调队列

#include 
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
using namespace std;#define ll long long#define _cle(m, a) memset(m, a, sizeof(m))#define repu(i, a, b) for(int i = a; i < b; i++)#define repd(i, a, b) for(int i = b; i >= a; i--)#define sfi(n) scanf("%d", &n)#define sfl(n) scanf("%I64d", &n)#define pfi(n) printf("%d\n", n)#define pfl(n) printf("%I64d\n", n)#define MAXN 1000005string mon[] = { "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"};ll py[] = { 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};ll ny[] = { 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};ll ppy[13];ll nny[13];ll dy[MAXN];map
mh;struct P{ ll hh, rr; P(ll _h = 0, ll _w = 0) : hh(_h), rr(_w) {} bool operator < (const P& t) const { return hh > t.hh; }}order[2505];struct W{ ll t, w; W(ll _t = 0, ll _w = 0) : t(_t), w(_w) {}};queue

O;deque

T;void get_np(){ ppy[0] = 0; repu(i, 1, 13) ppy[i] = py[i - 1] + ppy[i - 1]; nny[0] = 0; repu(i, 1, 13) nny[i] = ny[i - 1] + nny[i - 1];}void get_m(){ for(int i = 0; i < 12; i++) mh[mon[i]] = i + 1;}bool is_y(int year){ if(year % 400 == 0) return true; if(year % 4 == 0) { if(year % 100 == 0) return false; else return true; } return false;}void get_d(){ dy[0] = 0; for(int i = 2000; ; i++) { if(is_y(i)) dy[i - 2000 + 1] = dy[i - 2000] + 366; else dy[i - 2000 + 1] = dy[i - 2000] + 365; if(dy[i - 2000 + 1] > 10000) return ; //cout<
>s; scanf("%I64d %I64d %I64d %I64d", &dd, &yy, &hh, &rr); mm = mh[s]; tt += dy[yy - 2000]; if(is_y(yy)) tt += ppy[mm - 1]; else tt += nny[mm - 1]; tt += (dd - 1); tt = tt * (ll)(24); tt += (hh + 1); O.push(P(tt, rr)); //cout<<<"**************"<
<
life) T.pop_front(); sum += O.front().rr * (T.front().w + cost * (i - T.front().t)); O.pop(); } } pfl(sum); } return 0;}

View Code

 

转载于:https://www.cnblogs.com/sunus/p/4719431.html

你可能感兴趣的文章
命令查看java的class字节码文件
查看>>
javascript -- 計算頁面多少時間後自動跳轉到指定頁面
查看>>
几个动画demo
查看>>
Win10系统的SurfacePro4的启动菜单太多怎么管理,UEFI的启动菜单如何编辑
查看>>
HUE中Oozie执行Sqoop
查看>>
php 导出
查看>>
[iOS]使用signal让app能够在从容崩溃
查看>>
位运算符的应用
查看>>
quicksort
查看>>
Windows 文件过滤驱动经验总结
查看>>
一个如此简单的杀手级应用
查看>>
捕获异常
查看>>
Ubuntu 14.04 LTS中怎样解决系统设置残缺的问题
查看>>
6.1.2.8 margin
查看>>
百练2775:文件结构“图”
查看>>
在美国地铁里的一个实验:平凡的地方能否感知美 (ZZ)
查看>>
MVC4 Membership, Authorization, and Security
查看>>
利用SharePoint Designer 修改列表页面实例
查看>>
王家林 大数据Spark超经典视频链接全集[转]
查看>>
Mysql 获取表的comment 字段
查看>>