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)
全栈程序员-站长的头像全栈程序员-站长


相关推荐

  • JSONArray转list实体类[通俗易懂]

    JSONArray转list实体类[通俗易懂]List<实体类>dataArr=JSONArray.parseArray(result,实体类.class);

    2022年6月23日
    98
  • MSN contactlist grabber

    MSN contactlist grabber——msn_contact_grab.class.php——(转)/*Copyright 2007 Jonathan Street jonathan@torrentialwebdev.comThis program is free software; you can redistribute it and/or modify    it under the terms of

    2025年6月18日
    7
  • compoundbutton调用setChecked触发onCheckedChanged的终极解决方案;「建议收藏」

    compoundbutton调用setChecked触发onCheckedChanged的终极解决方案;「建议收藏」当我们想要实现了一个简单的有状态切换的控件的时候,我们通常会去实现,CompoundButton来实现我们想要的一个效果,最常见的就是系统的CheckBox,但是在使用的过程中,我们会发现一个问题就是:我们在使用SetChecked的时候,总是会触发,onCheckedChanged这个回掉方法;那么怎么样才能做到不触发这个回掉方法呢?首先我们需要知道为什么会触发这个方法;查看源码如下:pu

    2022年5月4日
    75
  • idea打开maven项目 没有maven 窗口_maven主要是做什么

    idea打开maven项目 没有maven 窗口_maven主要是做什么打开项目不要以文件夹的方式打开,要点击pom文件打开项目,然后选择openasproject,然后导入项目就好了。

    2022年8月21日
    9
  • 怎么在mac上录屏_录屏工具

    怎么在mac上录屏_录屏工具您可以为整个屏幕或屏幕上的选定部分录制视频。1、使用“截屏”工具栏要查看“截屏”工具栏,请同时按下以下三个按键:Shift、Command和5。您将看到用于录制整个屏幕、录制屏幕的选定部分或拍摄屏幕静态图像的屏幕控制项:录制整个屏幕点按屏幕控制项中的。指针会变为相机。 点按任意屏幕以开始录制屏幕,或点按屏幕控制项中的“录制”。 要停止录制,请点按菜单栏中的。或者,按下Command-Control-Esc(Escape)。 使用缩略图进行修剪、共享、存储或其他操作…

    2022年9月24日
    3
  • idea2021激活码csdn-激活码分享

    (idea2021激活码csdn)JetBrains旗下有多款编译器工具(如:IntelliJ、WebStorm、PyCharm等)在各编程领域几乎都占据了垄断地位。建立在开源IntelliJ平台之上,过去15年以来,JetBrains一直在不断发展和完善这个平台。这个平台可以针对您的开发工作流进行微调并且能够提供…

    2022年3月22日
    189

发表回复

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

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