hdu4122(单调队列)

hdu4122(单调队列)

 

处理题目中给的日期,然后用单调队列维护

Alice’s mooncake shop

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 1925    Accepted Submission(s): 468

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. 



hdu4122(单调队列)


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
 

 

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <algorithm>
#include <math.h>
#include <map>
#include <queue>
#include <sstream>
#include <iostream>
using namespace std;
#define INF 0x3fffffff
//#define __int64 long long int
typedef __int64 LL;

struct Day
{
    int y,m,d,h,ned;
}k[2555];

struct node
{
    int time;
    LL key;
}que[110000];

int n,mm;
LL mark[110000];
int save[13]={
   0,31,28,31,30,31,30,31,31,30,31,30,31};
int t,c;
int g[100100];

int change(string tmp)
{
    if(tmp=="Jan") return 1;
    if(tmp=="Feb") return 2;
    if(tmp=="Mar") return 3;
    if(tmp=="Apr") return 4;
    if(tmp=="May") return 5;
    if(tmp=="Jun") return 6;
    if(tmp=="Jul") return 7;
    if(tmp=="Aug") return 8;
    if(tmp=="Sep") return 9;
    if(tmp=="Oct") return 10;
    if(tmp=="Nov") return 11;
    if(tmp=="Dec") return 12;
}



int main()
{
    //freopen("//home//chen//Desktop//ACM//in.text","r",stdin);
    //freopen("//home//chen//Desktop//ACM//out.text","w",stdout);
    while(scanf("%d%d",&n,&mm)&&(n+mm))
    {
        memset(mark,0,sizeof(mark));
        for(int i=0;i<n;i++)
        {
            string tmp;
            cin>>tmp;
            scanf("%d%d%d%d",&k[i].d,&k[i].y,&k[i].h,&k[i].ned);
            k[i].m=change(tmp);
        }
        int y=2000,d=1,m=1,h=0;
        int cnt=0;
        int num=0;
        while(1)
        {
            cnt++;
            while(k[num].y==y&&k[num].h==h&&k[num].m==m&&k[num].d==d)
            {
                mark[cnt]+=k[num].ned;
                num++;
            }
            if(num==n) break;

            if( (y%400==0)||(y%4==0&&y%100!=0))
                save[2]=29;
            h++;
            if(h>=24)
            {
                h=0;
                d++;
            }
            if(d>save[m])
            {
                d=1;
                m++;
            }
            if(m>12)
            {
                m=1; y++;
            }
            save[2]=28;
        }
        ///
        scanf("%d%d",&t,&c);
        for(int i=1;i<=mm;i++)
            scanf("%d",g+i);
        LL sum=0;
        LL base=0;
        int qf=0,qd=0;
        /*
        for(int i=1;i<=t;i++)
        {
            base += c;
            LL cur=g[i]-base;
            while(qf>qd&&cur<que[qf-1].key) qf--; //入队
            que[qf].key=cur;
            que[qf].time=i;
            qf++;
            if(mark[i]!=0)
            {
                sum += (que[qd].key+base)*(LL)mark[i];
            }
        }*/

        for(int i=1;i<=mm;i++)
        {
            base+=c;
            LL cur=g[i]-base;
            while(qf>qd && cur<que[qf-1].key) qf--;
            que[qf].key=cur;
            que[qf].time=i;
            qf++;

            /////
            int k=i-t;
            k=max(1,k);
            while(qf>qd && que[qd].time<k ) qd++;
            if(mark[i]!=0)
                sum +=( (que[qd].key+base)*mark[i]);
        }
        cout<<sum<<endl;
    }
    return 0;
}

 

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请联系我们举报,一经查实,本站将立刻删除。

发布者:全栈程序员-站长,转载请注明出处:https://javaforall.net/110078.html原文链接:https://javaforall.net

(0)
全栈程序员-站长的头像全栈程序员-站长


相关推荐

  • 一文详解微服务架构

    一文详解微服务架构

    2022年2月11日
    37
  • Java代码中BeanUtils工具类的populate方法使用

    Java代码中BeanUtils工具类的populate方法使用这个工具的populate静态方法可以直接将map对象封装成实体类,简化代码编写,这里做一下记录。比如:Map<String,String[]>parameterMap=req.getParameterMap();UserloginUser=newUser();try{//所用的依赖是commons-beanutils-1.8.0.jar//importorg.apache.commons.beanutils.BeanUtils;//作

    2022年7月14日
    16
  • ts 视频下载[通俗易懂]

    ts 视频下载[通俗易懂]importurllib.requestimportrequests,os,threadingfromCrypto.CipherimportAESfromsrc.Pacho.moviePa.tsdownloadimportaes_decodeclassm3u8down(object):def__init__(self,url,listheaders,dicheaders):self.url=url#这里的url是index.m3.

    2022年7月18日
    17
  • img图片加载失败的处理

    img图片加载失败的处理img图片加载失败的措施很多产品都会要求图片加载失败会出现一个占位符这种类似的图片,强调文本强调文本加粗文本加粗文本标记文本删除文本引用文本H2Ois是液体。210运算结果是1024.插入链接与图片链接:link.图片:带尺寸的图片:居中的图片:居中并且带尺寸的图片:当然,我们为了让用户更加便捷,我们增加了图片拖拽功能。如何插入一段漂亮的代码片去博客设置页面,选择一款你喜欢的代码片高亮样式,下面展示同样高亮的代码片.//Anhighlight

    2022年5月16日
    49
  • debian源代码_debian10软件源

    debian源代码_debian10软件源debhttp://security.debian.org/squeeze/updatesmaindeb-srchttp://security.debian.org/squeeze/updatesmaindebhttp://mirrors.163.com

    2022年10月19日
    0
  • [Pycharm] 远程连接服务器「建议收藏」

    [Pycharm] 远程连接服务器「建议收藏」1.选择远程python解释器File->Settings->Project->PythonInterpreter点击+号其中Host是服务器的固定IPUsername是服务器上创建的自己的用户名(注意在服务器上创建用户的时候,记住用户名和密码)Next,Next,因为服务器中会安装多个Python环境,在Interpreter中可以指定不同的虚拟环境。在Linux中,通常在/data和/home中都会创建自己用户名的文件夹,虚拟环境由于占内存较多,通常存储在/d

    2022年8月27日
    3

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注

关注全栈程序员社区公众号