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


相关推荐

  • vue项目结构解读[通俗易懂]

    1、整体结构解读2、分布解读

    2022年4月12日
    50
  • windows10任务栏图标变白_为什么win10桌面图标会变成白色

    windows10任务栏图标变白_为什么win10桌面图标会变成白色在软件使用过程中,有时会发现任务栏的软件图标消失,变成了一个白色,方法一:将以下代码复制到记事本另存为:清理图标缓存.bat文件,然后双击运行此批处理文件即可(实际测试ok,推荐方法)。regdelete”HKEY_CURRENT_USER\Software\Classes\LocalSettings\Software\Microsoft\Windows\CurrentVersion\TrayNotify”/va/ftaskkill/f/im…

    2022年10月9日
    3
  • Unity实战项目 ☀️| 教你如何在Unity中通过 代码获取 URL链接网页 的 标题 等各种信息✨

    Unity实战项目 ☀️| 教你如何在Unity中通过 代码获取 URL链接网页 的 标题 等各种信息✨直接放入脚本执行即可,可拿到URL目标网页的所有信息stringsa=””;WebRequestwr=WebRequest.Create(“https://www.baidu.com”);Streams=wr.GetResponse().GetResponseStream();StreamReadersr=newStreamReader(s,Encoding.Default);string

    2022年7月18日
    14
  • Linux下Open函数

    Linux下Open函数文章目录Open介绍参数案例输出结果:文件描述符fdOpen介绍 Open函数用来打开一个文件,建立一个文件描述符到文件路径的映射,建立文件标识。 open函数原型如下所示:#include&amp;lt;fcntl.h&amp;gt;intopen(constchar*pathname,intflag,…);参数pathname是要打开或者创建的文件路径名,可以是绝对路径也…

    2022年5月26日
    33
  • 树莓派 Ubuntu 18.04 启动2.4Ghz或5Ghz热点及部分5G信道启动失败解决方法「建议收藏」

    树莓派 Ubuntu 18.04 启动2.4Ghz或5Ghz热点及部分5G信道启动失败解决方法「建议收藏」配置热点1.建立wifi热点建立2.4GHz热点sudonmclicaddtypewifiifname<wifi-device>con-name<connection-name>autoconnectnossid<hotspot-ssid>新建热点sudonmcliconnectionmodify<connection-name>802-11-wireless.modeap802-11-wireless.

    2022年5月29日
    72
  • jar包和war包的区别

    jar包和war包的区别1.概念1.1jar包JAR包是类的归档文件,JAR文件格式以流行的ZIP文件格式为基础。与ZIP文件不同的是,JAR文件不仅用于压缩和发布,而且还用于部署和封装库、组件和插件程序,并可被像编译器和JVM这样的工具直接使用。2.2war包war包是JavaWeb程序打的包,war包里面包括写的代码编译成的class文件,依赖的包,配置文件,所有的网站页面,包括html,jsp等等。一个war包可以理解为是一个web项目,里面是项目的所有东西。2.目录结构

    2022年5月10日
    56

发表回复

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

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