zoukankan      html  css  js  c++  java
  • PTA (Advanced Level) 1016 Phone Bills

    Phone Bills

      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 (≤), 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-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

    解题思路:
      本题是一个计算电话费用的题目,每组测试首先给出24个整数,代表一天中00:00 ~ 24:00每个小时每分钟通话的收费(单位是美分),下一行给出一个整数n表示通话记录的数量,之后n行跟随表示每条通话记录的信息,包括用户名 时间(月:日:时:分) 开始通话或结束通话标识(on-line / off-line)。要求按时间输出所有用户的通话信息,格式为

    用户名  通话月份
    开始通话时间  结束通话时间  本次通话金额(单位为美元)
    ……
    ……
    Total amount: 全部通话金额总和单位为美元)

      这里首先用一个数组toll[25]记录24小时通话各自的收费,用一个结构体node记录每条通话记录

    int toll[25];   //记录每个小时每分钟通话的收费
    struct node{    
        string name;    //客户
        int month, dd, hh,mm;   //时间
        bool line;  //结束通话标识 true表示on-line false表示off—line
    };

      我们想要在输入是将每个客户的通话记录都分开记录,这里可以利用map将每个客户名映射到一个vector容器,容器中装载通话记录。

    map<string, vector<node> > customer;    
    //customer["张三"]现在就代表着姓名为张三的用户的所有通话记录

      这样我们就可以开始录入通话记录了

    while(n--){
            node temp;  //temp记录当前输入的通话记录信息
            cin >> temp.name;   //输入姓名
            scanf("%d:%d:%d:%d", &temp.month, &temp.dd, &temp.hh, &temp.mm);
            //输入时
            string tline;
            cin >> tline;   //输入通话标识
            temp.line = mp[tline];  //这里的mp将"on-line"映射为true将"off-line"映射为false
            customer[temp.name].push_back(temp);
            //将当前信息记录入其客户所对应的容器中
        }

      之后我们就需要遍历所有客户与其通话记录,将客户的通话记录按时间升序排序,根据排序后的通话记录,我们就可以获得该客户的所有完整通话(时间相邻最近的on_line与off-line,中间不能夹着其他on_line与off-line)。我们需要获得每一个完整通话并将其记录在对应用户名下,我们用结构体call记录每一个完整通话的信息,包括客户名,开始通话时间,结束通话时间,通话时长,通话消费。

    struct call{
        string name;    //客户名
        int onMonth, onDd, onHh, onMm;  //开始通话时间
        int offMonth, offDd, offHh, offMm;  //结束通话时间
        int sumTime;    //通话时长
        int cost;   //通话消耗
    };

      为了记录每个客户的完整通话,我们可以采用和每个客户通话记录一样的记录方式,利用map将每个客户名映射到一个vector容器,只不过这次容器中装载的是完整通话。

    map<string, vector<call> > costInf;
    //costInf["张三"]现在就代表着姓名为张三的客户的所有完整通话

      遍历信息  

    for(auto i : customer){ //遍历所有客户
            sort((i.second).begin(), (i.second).end(), cmp);
            //将每个用户的通话记录按时间升序排序
            bool isOnLine = false;
            //isOnLine用来标记客户当前是否正在通话
            call temp;  //temp记录一次完整通话
            for(auto j : (i.second)){   //遍历该客户所有通话记录
                if(j.line){ //遇到开始通话的通话记录
                    isOnLine = true;    //标记当前状态为正在通话
                    temp.onMonth = j.month, temp.onDd = j.dd, temp.onHh = j.hh, temp.onMm = j.mm;
                    //记录开始通话时间
                }else if(!j.line && isOnLine){  //如果现在正在通话且当前通话记录为结束通话
                    isOnLine = false;   //标记当前状态为结束通话
                    temp.offMonth = j.month, temp.offDd = j.dd, temp.offHh = j.hh, temp.offMm = j.mm;
                    //记录通话结束时间
                    temp.sumTime = 0;
                    temp.cost = 0;
                    clt(temp.onDd, temp.onHh, temp.onMm, temp.offDd, temp.offHh, temp.offMm, temp.sumTime, temp.cost);
                    //计算本次通话的时长于消耗
                    costInf[j.name].push_back(temp);
                    //将当前完整通话信息记录入其客户所在容器中
                }
            }
        }

      由于我们之前已经将通话记录排序,所以获取的完整通话记录一定是时间升序。

      对与计算每次完整通话时间与消耗,我们只需要由开始通话时间开始,每次加一分钟,到开始时间等于结束时间为止,在过程中记录通话时间与花费金额即可。

    void clt(int bgdd, int bghh, int bgmm, int eddd, int edhh, int edmm, int &sumTime, int &cost){
        //传入开始时间与结束时间,把我们要计算的两个值传引用。
        while(bgdd < eddd || bghh < edhh || bgmm < edmm){   //开始时间小于结束时间
            sumTime++;  //通话时间加一分钟
            cost += toll[bghh]; //将该分钟的收费计入消耗
            bgmm++; //开始时间加一分钟
            if(bgmm == 60){ //分钟进位
                bgmm = 0;
                bghh++;
            }
            if(bghh == 24){ //小时进位
                bghh = 0;
                bgdd++;
            }
        }

      AC代码

      1 #include <bits/stdc++.h>
      2 using namespace std;
      3 const int maxn = 1e3+100;
      4 int toll[25];   //记录每个小时每分钟通话的收费
      5 struct node{
      6     string name;    //客户名
      7     int month, dd, hh,mm;   //时间
      8     bool line;  //结束通话标识 true表示on-line false表示off—line
      9 };
     10 struct call{
     11     string name;    //客户名
     12     int onMonth, onDd, onHh, onMm;  //开始通话时间
     13     int offMonth, offDd, offHh, offMm;  //结束通话时间
     14     int sumTime;    //通话时长
     15     int cost;   //通话消耗
     16 };
     17 map<string, bool> mp;
     18 map<string, vector<node> > customer;
     19 //customer["张三"]现在就代表着姓名为张三的用户的所有通话记录
     20 map<string, vector<call> > costInf;
     21 //costInf["张三"]现在就代表着姓名为张三的客户的所有完整通话
     22 bool cmp(node a, node b){   //按时间升序排序
     23     if(a.month != b.month)
     24         return a.month < b.month;
     25     else if(a.dd != b.dd){
     26         return a.dd < b.dd;
     27     }else if(a.hh != b.hh){
     28         return a.hh < b.hh;
     29     }else if(a.mm != b.mm)
     30         return a.mm < b.mm;
     31 }
     32 void clt(int bgdd, int bghh, int bgmm, int eddd, int edhh, int edmm, int &sumTime, int &cost){
     33     //传入开始时间与结束时间,把我们要计算的两个值传引用。
     34     while(bgdd < eddd || bghh < edhh || bgmm < edmm){   //开始时间小于结束时间
     35         sumTime++;  //通话时间加一分钟
     36         cost += toll[bghh]; //将该分钟的收费计入消耗
     37         bgmm++; //开始时间加一分钟
     38         if(bgmm == 60){ //分钟进位
     39             bgmm = 0;
     40             bghh++;
     41         }
     42         if(bghh == 24){ //小时进位
     43             bghh = 0;
     44             bgdd++;
     45         }
     46     }
     47 }
     48 int main()
     49 {
     50     mp["on-line"] = true;
     51     mp["off-line"] = false;
     52     for(int i = 0; i < 24; i++){
     53         scanf("%d", &toll[i]);
     54     }
     55     int n;
     56     scanf("%d", &n);
     57     while(n--){
     58         node temp;  //temp记录当前输入的通话记录信息
     59         cin >> temp.name;   //输入姓名
     60         scanf("%d:%d:%d:%d", &temp.month, &temp.dd, &temp.hh, &temp.mm);
     61         //输入时
     62         string tline;
     63         cin >> tline;   //输入通话标识
     64         temp.line = mp[tline];  //这里的mp将"on-line"映射为true将"off-line"映射为false
     65         customer[temp.name].push_back(temp);
     66         //将当前信息记录入其客户所对应的容器中
     67     }
     68     for(auto i : customer){ //遍历所有客户
     69         sort((i.second).begin(), (i.second).end(), cmp);
     70         //将每个用户的通话记录按时间升序排序
     71         bool isOnLine = false;
     72         //isOnLine用来标记客户当前是否正在通话
     73         call temp;  //temp记录一次完整通话
     74         for(auto j : (i.second)){   //遍历该客户所有通话记录
     75             if(j.line){ //遇到开始通话的通话记录
     76                 isOnLine = true;    //标记当前状态为正在通话
     77                 temp.onMonth = j.month, temp.onDd = j.dd, temp.onHh = j.hh, temp.onMm = j.mm;
     78                 //记录开始通话时间
     79             }else if(!j.line && isOnLine){  //如果现在正在通话且当前通话记录为结束通话
     80                 isOnLine = false;   //标记当前状态为结束通话
     81                 temp.offMonth = j.month, temp.offDd = j.dd, temp.offHh = j.hh, temp.offMm = j.mm;
     82                 //记录通话结束时间
     83                 temp.sumTime = 0;
     84                 temp.cost = 0;
     85                 clt(temp.onDd, temp.onHh, temp.onMm, temp.offDd, temp.offHh, temp.offMm, temp.sumTime, temp.cost);
     86                 //计算本次通话的时长于消耗
     87                 costInf[j.name].push_back(temp);
     88                 //将当前完整通话信息记录入其客户所在容器中
     89             }
     90         }
     91     }
     92     for(auto i : costInf){  //遍历所有客户,输出信息
     93         cout << (i.first) << " ";   //输出客户名
     94         bool flag = false;  //标记月份是否已经输出
     95         double tam = 0.0;
     96         for(auto j : (i.second)){
     97             if(!flag){  //没有输出月份
     98                 printf("%02d
    ", j.onMonth);
     99                 flag = true;    //格式化输出月份并将flag标记为true
    100             }
    101             printf("%02d:%02d:%02d %02d:%02d:%02d %d $%.2f
    ", j.onDd, j.onHh, j.onMm, j.offDd, j.offHh, j.offMm, j.sumTime, j.cost / 100.0);
    102             //格式化输出开始时间 结束时间 通话时长 通话消耗(美分转为美元)
    103             tam += j.cost/ 100.0;
    104         }
    105         printf("Total amount: $%.2f
    ", tam);
    106         //输出总消耗
    107     }
    108     return 0;
    109 }
  • 相关阅读:
    [SCOI2013]火柴棍数字(背包)
    [NOI2015]品酒大会
    后缀数组小结
    [POI2009]Slw
    [POI2009]Wie
    [POI2008]账本BBB
    ant语法和规范
    使用Hudson进行持续集成
    gnu make
    可信执行环境(TEE)介绍
  • 原文地址:https://www.cnblogs.com/suvvm/p/10151775.html
Copyright © 2011-2022 走看看