pat甲级1016

1016 Phone Bills (25)(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 n

o 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

将通话记录按照姓名、时间进行排序,进行遍历,当相邻两个记录姓名相同并且上一个记录为on-line,下一个记录为off-line时,才是有效的记录,然后将这些数据 以姓名为键存放到map里。当计算通话费用时,分别计算从第0天第0时第0分到开始时间和结束时间的费用,然后作差。
 1 #include <iostream>
 2 #include <algorithm>
 3 #include <string>
 4 #include <map>
 5 #include <vector>
 6 using namespace std;
 7
 8 struct Node
 9 {
10     string name;
11     int d, h, m, time;
12     bool on_off;
13 };
14
15 int toll[25];
16 bool cmp(Node a, Node b);
17 double billFromZero(Node a);
18
19 int main()
20 {
21     int i, N, month;
22     string s;
23     Node node[1000];
24     for (i = 0; i < 24; i++)
25     {
26         cin >> toll[i];
27         toll[24] += toll[i];
28     }
29     cin >> N;
30     for (i = 0; i < N; i++)
31     {
32         cin >> node[i].name;
33         scanf_s("%d:%d:%d:%d", &month, &node[i].d, &node[i].h, &node[i].m);
34         node[i].time = ((node[i].d * 24) + node[i].h) * 60 + node[i].m;
35         cin >> s;
36         node[i].on_off = (s == "on-line") ? true : false;
37     }
38     sort(node, node + N, cmp);
39     map<string, vector<Node>> mapp;
40     for (i = 1; i < N; i++)
41     {
42         if (node[i].name == node[i - 1].name && !node[i].on_off && node[i - 1].on_off)
43         {
44             mapp[node[i].name].push_back(node[i - 1]);
45             mapp[node[i].name].push_back(node[i]);
46         }
47     }
48     for (auto it : mapp)
49     {
50         vector<Node> v = it.second;
51         cout << it.first;
52         printf(" %02d\n", month);
53         double t, sum = 0.0;
54         for (i = 1; i < v.size(); i += 2)
55         {
56             printf("%02d:%02d:%02d %02d:%02d:%02d %d ", v[i - 1].d, v[i - 1].h, v[i - 1].m, v[i].d, v[i].h, v[i].m, v[i].time - v[i - 1].time);
57             t = billFromZero(v[i]) - billFromZero(v[i - 1]);
58             printf("$%.2f\n", t);
59             sum += t;
60         }
61         printf("Total amount: $%.2f\n", sum);
62     }
63     return 0;
64 }
65
66 bool cmp(Node a, Node b)
67 {
68     return (a.name != b.name) ? (a.name < b.name) : (a.time < b.time);
69 }
70
71 double billFromZero(Node a)
72 {
73     double sum = a.d * toll[24] * 60 + a.m * toll[a.h];
74     for (int i = 0; i < a.h; i++)
75         sum += toll[i] * 60;
76     return sum / 100;
77 }
 

原文地址:https://www.cnblogs.com/lxc1910/p/9501475.html

时间: 2024-07-31 04:15:38

pat甲级1016的相关文章

PAT 甲级 1016 Phone Bills (25 分) (结构体排序,模拟题,巧妙算时间,坑点太多,debug了好久)

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 connec

PAT甲级1005 Spell It Right

题目:PAT甲级 1005 题解:水题.看到题目的第一时间就在想一位一位的mod,最后一加一转换就完事了.结果看到了N最大为10的100的次方,吓得我赶紧放弃这个想法... 发现碰到这种情况用字符串十分好用,这道题应该考察的就是这一点.大致思路就是把数字的每一位放到字符串中,然后通过ASCII码得到每一位的相加结果num,然后把num一位一位的放到stack中,使用stack是因为它先进先出的特性,最后输出就行了. 代码: 1 #include<cstdio> 2 #include<qu

PAT甲级考前整理

终于在考前,刷完PAT甲级130道题目,不容易!!!每天沉迷在刷题之中而不能超脱,也是一种境界.PAT甲级题目总的说卡题目的比较多,卡测试点的比较少,有些题目还会有题意混淆,这点就不吐槽了吧.静下心来耍这130道题,其实磨练的是一种态度与手感,养成的是一种习惯.热爱AC没有错!! 130道题目主要的考点: 1.排序:快速排序,直接插入排序,希尔排序,分治排序,堆排序. 2.图论:拓扑排序.最短路径.深度搜索.广度搜索. 3.树:树的遍历.完全二叉树.AVL. 4.其他:并查集,模拟,哈希.背包.

PAT甲级考试题库1001 A+B Format 代码实现及相关知识学习

准备参加九年九月份的PAT甲级证书考试,对网站上的题目进行总结分析: 1001题 A+B Format (20 分) Calculate a+b and output the sum in standard format -- that is, the digits must be separated into groups of three by commas (unless there are less than four digits). 计算a+b的值并以一定格式输出其和sum(数字需要

PAT甲级专题|最短路

PAT甲级最短路 主要算法:dijkstra 求最短最长路.dfs图论搜索. 1018,dijkstra记录路径 + dfs搜索路径最值 25分,错误点暂时找不出.. 如果只用dijkstra没法做,只能得20分 #include<bits/stdc++.h> using namespace std; const int inf = 0x3f3f3f3f; const int maxn = 510; int cmax,n,ter,m; int caps[maxn]; int g[maxn][m

【PAT甲级】1070 Mooncake (25 分)(贪心水中水)

题意: 输入两个正整数N和M(存疑M是否为整数,N<=1000,M<=500)表示月饼的种数和市场对于月饼的最大需求,接着输入N个正整数表示某种月饼的库存,再输入N个正数表示某种月饼库存全部出手的利润.输出最大利润. trick: 测试点2可能包含M不为整数的数据.(尽管题面说明M是正整数,可是根据从前PAT甲级题目的经验,有可能不是整数.....) 代码: #define HAVE_STRUCT_TIMESPEC#include<bits/stdc++.h>using names

pat 甲级测试题目 -- 1016 Phone Bills

题目链接 题目描述 要求计算银行账单. 输入 第一行给你一天24小时(00:00~01:00 ...)每个小时每分钟的话费,单位是美分 第二行给你顾客列表(N 个) 接下来的 N 行是顾客的账单详情 CYLL 01:01:06:01 on-line 姓名 月:日:小时:分钟 状态 CYLL 01:28:16:05 off-line 姓名 月:日:小时:分钟 状态 on-line 和 off-line 必须一一对应该记录才有效 输出 对于输入有效的顾客,给出该顾客这个月的账单,格式如下 CYJJ

PAT乙级 1016. 部分A+B (15)

1016. 部分A+B (15) 时间限制 100 ms 内存限制 65536 kB 代码长度限制 8000 B 判题程序 Standard 作者 CHEN, Yue 正整数A的“DA(为1位整数)部分”定义为由A中所有DA组成的新整数PA.例如:给定A = 3862767,DA = 6,则A的“6部分”PA是66,因为A中有2个6. 现给定A.DA.B.DB,请编写程序计算PA + PB. 输入格式: 输入在一行中依次给出A.DA.B.DB,中间以空格分隔,其中0 < A, B < 1010

PAT甲级第二次真题练习

1005 Spell It Right (20)(20 分)提问 Given a non-negative integer N, your task is to compute the sum of all the digits of N, and output every digit of the sum in English. Input Specification: Each input file contains one test case. Each case occupies one