HDU 4122 Alice's mooncake shop

Source: Internet
Author: User

Alice's mooncake shop

Time Limit: 2000/1000 MS (Java/others) memory limit: 32768/32768 K (Java/Others)
Total submission (s): 2859 accepted submission (s): 723


Problem descriptionthe 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" (circle) 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 =, 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.

 

Inputthe input contains no more than 10 test cases.
For each test case:
The first line between des 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 cocould 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 ith line (I starts from 1) contains a integer indicating the cost to make a mooncake during the ith hour. the cost is no more than 10000. jan 1st 2000 0 o 'clock belongs to the 1st hour, Jan 1st 2000 1 o 'clock belongs to the 2nd 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.

 

Outputyou shoshould output one line for each test case: the minimum cost.

 

Sample input1 10jan 1 2000 9 105 2 20 20 10 1087 9 5 100 0

 

Sample output70 Hint "Jan 1 2000 9 10" means in Jan 1st 2000 at 9 o'clock, there's a consumer ordering 10 mooncakes. maybe you shoshould use 64-bit signed integers. the answer will fit into a 64-bit signed integer.

 

 

There is a mooncake store which is open for M hours (starting from on January 1, January 1, 2000) and then has N orders.

The number of moon cakes required for each order and the time for completing the order.

Then the shopkeeper can make mooncakes in advance (multiple mooncakes can be made at any time ).

The price of each mooncake varies by time ~

Moon cakes made in advance need to be stored in a refrigerator. The cost per hour is S, and they can be stored for up to t hours.

Ask you the minimum cost for completing N orders ~

 

In fact, it is to maintain a queue with a time difference of t that requires a monotonically increasing unit price for moon cakes ~.

Another point is to convert the date to the hour system.

Handle the leap year

 

 

 

#include <iostream>#include <cstring>#include <algorithm>#include <cstdio>#include <string>using namespace std;const int N = 200100 ;typedef long long ll;int  n  , M  , t , s ;int que[N] , head , tail;string ss[]= { "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov" ,"Dec"};int change( string s ){    for( int i = 0 ; i < 12 ; ++i ){        if( s == ss[i] ) return i + 1 ;    }}int day[13] = {0,31,28,31,30,31,30,31,31,30,31,30,31 };bool is_leap(int y){  return ( ( y % 100 != 0 && y % 4 == 0  ) || y % 400 == 0 ) ? true : false; }struct node{    int t , c , order;    bool operator < (const node &a ) const {        if( t != a.t )return t < a.t ;        else return order < a.order ;    }}e[N];int cal( int y , int m , int d , int h ){    int r_n = 0 ,t = 0 ;    for( int i = 2000 ; i < y ; ++i )        if( is_leap(i) ) r_n ++;    t += ( ( y - 2000 - r_n ) * 365 + r_n * 366 ) * 24  ;    t += day[m-1] * 24 ;    if( m > 2 && is_leap(y) ) t += 24 ;    t += ( d - 1 ) * 24 ;    t += h ;    return t;}void run(){    string ss;    int y , m , d , h , r ;    for( int i = 0 ; i < n ; ++i ){        cin >> ss >> d >> y >> h >> e[i].c ;        m = change(ss);        e[i].t = cal(y,m,d,h);        e[i].order = 1 ;    }    cin >> t >> s ;    for( int i = n ; i < n + M ; ++i ){        cin >> e[i].c;        e[i].t = i - n  ;        e[i].order = 0 ;    }    n += M ;    sort( e , e + n );    head = tail = 0 ;    ll ans = 0 ;    for( int i = 0 ; i < n ; ++i ){        while( head < tail && e[ que[head] ].t + t < e[i].t ) head++ ;        if( e[i].order ){            ans += (ll) ( ( e[i].t - e[ que[head] ].t  ) * s  + e[ que[head] ].c ) * e[i].c ;            continue;        }        while( head < tail && ( e[i].t - e[ que[ tail-1 ] ].t ) * s + e[ que[ tail-1 ] ].c >= e[i].c ) tail -- ;        que[tail++] = i ;    }    cout << ans << endl;}int main(){    #ifdef LOCAL        freopen("in","r",stdin);    #endif    ios::sync_with_stdio(0);    for( int i = 1 ; i < 13 ; ++i ) day[i] += day[i-1];    while( cin >> n >> M && n && M )run();}

 

HDU 4122 Alice's mooncake shop

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.