PAT 1016

来源:互联网 发布:aes加密原理及算法 编辑:程序博客网 时间:2024/04/30 02:39

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-line" or "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-line" record 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

此题略烦!需要注意的是如果一个客户没有记录的话不需要打印出该客户的账单。题目都不说清楚,还给了这么一句“For each test case, you must print a phone bill for each customer.”。

 

代码

 1 #include <stdio.h>
 2 #include <string.h>
 3 #include <algorithm>
 4 using namespace std;
 5 
 6 typedef struct phoneRecord{
 7     char name[24];
 8     int mouth,day,hour,min;
 9     int onOrOffLine;
10 }phoneRecord;
11 
12 int cmp(const phoneRecord &,const phoneRecord &);
13 double computeTimeAndCharge(const phoneRecord&,const phoneRecord&,int&);
14 phoneRecord record[1000];
15 int toll[24];
16 
17 int main()
18 {
19     int N;
20     int i;
21     char str[10];
22     while(scanf("%d",&toll[0]) != EOF){
23         for(i=1;i<24;++i)
24             scanf("%d",&toll[i]);
25         scanf("%d",&N);
26         for(i=0;i<N;++i){
27             scanf("%s %d:%d:%d:%d %s",record[i].name,&record[i].mouth,&record[i].day,
28                 &record[i].hour,&record[i].min,str);
29             if(strcmp(str,"on-line") == 0)
30                 record[i].onOrOffLine = 0;
31             else
32                 record[i].onOrOffLine = 1;
33         }
34         sort(record,record+N,cmp);
35         char *tempName;
36         i = 0;
37         while(i < N){
38             tempName = record[i].name;            
39             int time,isFirst = 1;
40             double eachCharge,totalCharge = 0.0;
41             while(i < N && (strcmp(tempName,record[i].name) == 0)){
42                 if(i+1 < N && (strcmp(tempName,record[i+1].name) == 0) && (!record[i].onOrOffLine) 
43                     && record[i+1].onOrOffLine){
44                     if(isFirst == 1){
45                         isFirst = 0;    
46                         printf("%s %02d\n",tempName,record[i].mouth);
47                     }
48                     printf("%02d:%02d:%02d %02d:%02d:%02d",record[i].day,record[i].hour,record[i].min,
49                         record[i+1].day,record[i+1].hour,record[i+1].min);
50                     eachCharge = computeTimeAndCharge(record[i],record[i+1],time);
51                     eachCharge /= 100;
52                     printf(" %d $%.2lf\n",time,eachCharge);
53                     totalCharge += eachCharge;
54                     i += 2;
55                 }
56                 else
57                     ++i;
58             }
59             if(!isFirst)
60                 printf("Total amount: $%.2lf\n",totalCharge);
61         }
62     }
63     return 0;
64 }
65 
66 int cmp(const phoneRecord &a,const phoneRecord &b)
67 {
68     if(strcmp(a.name,b.name) > 0)
69         return 0;
70     else if(strcmp(a.name,b.name) < 0)
71         return 1;
72     else{
73         int aTime = 60 * 24 * a.day + 60 * a.hour + a.min;
74         int bTime = 60 * 24 * b.day + 60 * b.hour + b.min;
75         return aTime < bTime;
76     }
77 }
78 
79 double computeTimeAndCharge(const phoneRecord &a,const phoneRecord &b,int &time)
80 {
81     int aTime = 60 * 24 * a.day + 60 * a.hour + a.min;
82     int bTime = 60 * 24 * b.day + 60 * b.hour + b.min;
83     time = bTime - aTime;
84     int i;
85     double charge = 0.0;
86     for(i = aTime;i<bTime;++i){
87         charge += toll[(i%(60 * 24))/60];
88     }
89     return charge;
90 }
0 0