pat甲级1016

1016 Phone Bills (25 分)

A long-distance telephone company charges its customers by the following rules:

Making a long-distance call costs a certain amount per minute, depending on the time of day when the call is made. When a customer starts connecting a long-distance call, the time will be recorded, and so will be the time when the customer hangs up the phone. Every calendar month, a bill is sent to the customer for each minute called (at a rate determined by the time of day). Your job is to prepare the bills for each month, given a set of phone call records.

Input Specification:

Each input file contains one test case. Each case has two parts: the rate structure, and the phone call records.

The rate structure consists of a line with 24 non-negative integers denoting the toll (cents/minute) from 00:00 - 01:00, the toll from 01:00 - 02:00, and so on for each hour in the day.

The next line contains a positive number N (≤1000), followed by N lines of records. Each phone call record consists of the name of the customer (string of up to 20 characters without space), the time and date (mm:dd:hh:mm), and the word on-lineor off-line.

For each test case, all dates will be within a single month. Each on-line record is paired with the chronologically next record for the same customer provided it is an off-line record. Any on-line records that are not paired with an off-linerecord are ignored, as are off-line records not paired with an on-line record. It is guaranteed that at least one call is well paired in the input. You may assume that no two records for the same customer have the same time. Times are recorded using a 24-hour clock.

Output Specification:

For each test case, you must print a phone bill for each customer.

Bills must be printed in alphabetical order of customers' names. For each customer, first print in a line the name of the customer and the month of the bill in the format shown by the sample. Then for each time period of a call, print in one line the beginning and ending time and date (dd:hh:mm), the lasting time (in minute) and the charge of the call. The calls must be listed in chronological order. Finally, print the total charge for the month in the format shown by the sample.

Sample Input:

10 10 10 10 10 10 20 20 20 15 15 15 15 15 15 15 20 30 20 15 15 10 10 10
10
CYLL 01:01:06:01 on-line
CYLL 01:28:16:05 off-line
CYJJ 01:01:07:00 off-line
CYLL 01:01:08:03 off-line
CYJJ 01:01:05:59 on-line
aaa 01:01:01:03 on-line
aaa 01:02:00:01 on-line
CYLL 01:28:15:41 on-line
aaa 01:05:02:24 on-line
aaa 01:04:23:59 off-line

Sample Output:

CYJJ 01
01:05:59 01:07:00 61 $12.10
Total amount: $12.10
CYLL 01
01:06:01 01:08:03 122 $24.40
28:15:41 28:16:05 24 $3.85
Total amount: $28.25
aaa 01
02:00:01 04:23:59 4318 $638.80
Total amount: $638.80

思路:模拟类题目,可以先将数据用vector存储,然后用sort以名字为第一顺序,时间为第二顺序排序。之后删选无效条目,输出有效条目。思路清晰,但实现起来略微繁杂,得细细理理。 

代码:

#include
#include
#include
#include
#include
#include
#include

using namespace std;

struct custom{
   string name;
   int month;
   int day;
   int hour;
   int minute;
   int time;
   string state;
};
int day_fee = 0;
bool cmp(custom a,custom b){return a.name != b.name? a.name < b.name : a.time < b.time;}
double bill(custom a, int *b){
    int total = a.day * day_fee + a.minute*b[a.hour];
    for(int i = 0; i < a.hour; i++){
        total += b[i]*60;
    }
    return total/100.0;
}
int rate[24] = {0};

int cont = 0;
map> lis;
custom tmp;
int main(){
    for(int i =0; i < 24; i++){
        scanf("%d",&rate[i]);
        day_fee += rate[i]*60;
    }
    scanf("%d",&cont);
    vector csm;
    for(int i = 0; i< cont; i++){
        cin >> tmp.name;
        scanf("%d:%d:%d:%d",&tmp.month,&tmp.day,&tmp.hour,&tmp.minute);
        cin >> tmp.state;
        tmp.time = 24*60*tmp.day + 60*tmp.hour + tmp.minute;
        csm.push_back(tmp);
    }
    sort(csm.begin(),csm.end(),cmp);
    for(vector::iterator i = csm.begin(); i != csm.end()-1; i++){
        if(i -> state == "on-line" && (i+1) -> state == "off-line" && i->name == (i+1) -> name){
            lis[i->name].push_back(*i);
            lis[i->name].push_back(*(i+1));                         
        }
    }
    for(map>::iterator i = lis.begin(); i != lis.end(); i++){
        vectortp = i->second;
        double sum_fee = 0;
        cout << i->first<<" ";
        printf("%02d\n",tp.front().month);
        for(auto j = tp.begin(); j!= tp.end()-1; j++){
            if(j->state == "on-line"){
                double fee = bill(*(j+1),rate) - bill(*j,rate);
                sum_fee += fee;
                int diff_time = (j+1)->time - j->time;
                printf("%02d:%02d:%02d %02d:%02d:%02d %d $%.2f\n",j->day,j->hour,j->minute,(j+1)->day,(j+1)->hour,(j+1)->minute,diff_time,fee);
            }
        }
        printf("Total amount: $%.2f\n",sum_fee);
    }
    system("pause");
    return 0;
}

 

你可能感兴趣的:(PAT)