处理题目中给的日期,然后用单调队列维护
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
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.
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.
“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.
#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; }
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/110078.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...