✍个人博客:https://blog.csdn.net/Newin2020?spm=1011.2415.3001.5343
📚专栏地址:PAT题解集合
📝原题地址:题目详情 - 1017 Queueing at Bank (pintia.cn)
🔑中文翻译:银行排队
📣专栏定位:为想考甲级PAT的小伙伴整理常考算法题解,祝大家都能取得满分!
❤️如果有收获的话,欢迎点赞👍收藏📁,您的支持就是我创作的最大动力💪
Suppose a bank has K windows open for service. There is a yellow line in front of the windows which devides the waiting area into two parts. All the customers have to wait in line behind the yellow line, until it is his/her turn to be served and there is a window available. It is assumed that no window can be occupied by a single customer for more than 1 hour.
Now given the arriving time T and the processing time P of each customer, you are supposed to tell the average waiting time of all the customers.
Input Specification:
Each input file contains one test case. For each case, the first line contains 2 numbers: N (≤104) - the total number of customers, and K (≤100) - the number of windows. Then N lines follow, each contains 2 times:
HH:MM:SS- the arriving time, and P - the processing time in minutes of a customer. HereHHis in the range [00, 23],MMandSSare both in [00, 59]. It is assumed that no two customers arrives at the same time.Notice that the bank opens from 08:00 to 17:00. Anyone arrives early will have to wait in line till 08:00, and anyone comes too late (at or after 17:00:01) will not be served nor counted into the average.
Output Specification:
For each test case, print in one line the average waiting time of all the customers, in minutes and accurate up to 1 decimal place.
Sample Input:
7 3 07:55:00 16 17:00:01 2 07:59:59 15 08:01:00 60 08:00:00 30 08:00:02 2 08:03:00 10
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
Sample Output:
8.2
- 1
#include
using namespace std;
const int N = 10010;
int n, m;
struct person {
int arrive_time;
int service_time;
bool operator <(const person& p)const
{
return arrive_time < p.arrive_time;
}
}persons[N];
//小根堆,快速找到下一个最早能用的窗口
priority_queue<int, vector<int>, greater<int>> windows;
int main()
{
cin >> n >> m;
for (int i = 0; i < n; i++)
{
int hour, minute, second, service_time;
scanf("%d:%d:%d %d", &hour, &minute, &second, &service_time);
service_time = min(service_time, 60); //服务时间不能大于60min
persons[i] = { hour * 3600 + minute * 60 + second,service_time * 60 };
}
for (int i = 0; i < m; i++) windows.push(8 * 3600);
sort(persons, persons + n);
int sum = 0, cnt = 0;
for (int i = 0; i < n; i++)
{
auto person = persons[i];
auto w = windows.top();
windows.pop();
if (person.arrive_time > 17 * 3600) break; //如果来晚了,后面的人都忽略
int start_time = max(w, person.arrive_time); //该窗口最早开始时间
sum += start_time - person.arrive_time; //更新等待时间
cnt++;
windows.push(start_time + person.service_time);
}
printf("%.1f\n", (double)sum / cnt / 60);
return 0;
}