1017. Queueing at Bank (25)
제목:
시간 제한
400 ms
메모리 제한
65536 kB
코드 길이 제한
16000 B
문제 풀이 절차
Standard
저자.
CHEN, Yue
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 (<=10000) - 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. Here HH is in the range [00, 23], MM and SS are 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
Sample Output:
8.2
분석:
와 1014 (http://blog.csdn.net/apie_czx/article/details/45537627) 제목 이 비슷 한 제목 이지 만 차이 점 은 이곳 고객 이 오 는 시간 이 무 작위 라 는 것 이다.그리고 서 비 스 를 받 을 수 있 는 지 에 대해 서도 다르다. 1014 에 서 는 팀 에 있 더 라 도 지 정 된 시간 내 (17: 00) 까지 서 비 스 를 받 지 못 했다 면 Sorry 다. 이 문제 에 서 는 팀 에 들 어가 면 5 시가 넘 더 라 도 시간 을 순연 하 게 계산한다.
주의 점:
처음에 저 는 시간 을 순환 변수 로 했 지만 이렇게 하면 17: 00 이 넘 는 나머지 팀 의 대기 시간 을 계산 할 수 없 었 습 니 다. (팀 에 있 는 사람 이 얼마나 걸 리 는 지 계산 할 수 없 기 때문에 종료 시간 을 설정 할 수 없습니다)
정확 한 방법 은 시간 순환 을 5 시 까지 끝내 고 팀 에 남 은 사람 을 계산 하 는 것 이다.
사례 분석:
7 개 고객, 3 개 팀.
고객 의 시간 정렬,
손님.
서비스 시간
시작 시간
대기 시간
07:55:00
16
08:00:00
00:05:00
07:59:59
15
08:00:00
00:00:01
08:00:00
30
08:00:00
00:00:00
08:00:02
2
08:15:00
00:14:58
08:01:00
60
08:16:00
00:15:00
08:03:00
10
08:17:00
00:14:00
17:00:01
2
Sorry
없다
총 대기 시간 은 00: 48: 59, 6 명 으로 평균 대기 시간 은 8.2 분 이다.
AC 코드:
#include<stdio.h>
#include<vector>
#include<algorithm>
using namespace std;
struct Time{
int hour;
int minute;
int second;
};//
int turn2sec(Time T){
return T.hour * 60 * 60 + T.minute * 60 + T.second;
}//
struct Customer{
int s_time;
int server_time;
bool operator < (const Customer &A)const{
return s_time < A.s_time;
}// , ,
}buf[10002];
int ans[10002];//
int queue[102];// ,
int main(void){
//freopen("F://Temp/input.txt", "r", stdin);
int N, K;
while (scanf("%d%d", &N, &K) != EOF){
Time tmp;
for(int i = 0; i < N; i ++){
scanf("%d:%d:%d", &tmp.hour, &tmp.minute, &tmp.second);
buf[i].s_time = turn2sec(tmp);
int server;
scanf("%d", &server);
buf[i].server_time = server * 60;
}
sort(buf, buf + N);
for (int i = 0; i < K; i++){
queue[i] = -1;
}
for (int i = 0; i < N; i++){
ans[i] = -1;
}//
int count = 0;
for (int t = 28800; t <= 864000 && buf[count].s_time <= 61200; t++){// , , t
for (int i = 0; i < K; i++){
if (queue[i] != -1){
int tmp = queue[i];
if ((buf[tmp].s_time + ans[tmp] + buf[tmp].server_time) == t){// + ( )+ == ,
queue[i] = -1;
}
}
}
for (int i = 0; i < K; i++){
if (queue[i] == -1 && t >= buf[count].s_time){
queue[i] = count;// , ,
ans[count] = t - buf[count].s_time;//
count++;
}
}
}
int sum = 0;
int i;
for (i = 0; i < N; i++){
if (ans[i] == -1)break;
else{
sum += ans[i];
}
}
if (i == 0)printf("0/n");
else printf("%.1f
", (double)sum / i / 60);
}
return 0;
}
사실 더 좋 은 방법 은 창 으로 오 세 요. 왕도 의 코드 는 다음 과 같 습 니 다.
4. 567913. 여기 서 볼 수 있 듯 이 왕도 의 코드 에서 다음 사용 가능 한 시간 점 을 직접 찾 은 다음 에 대기 시간 총화 에 누적 되 었 다. 그러면 그의 시간 은 뛰 어 왔 고 시간 에 따라 1 초 1 초 보다 훨씬 빨리 증가 할 것 이다.
-- 에이 피 진 소 욱
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
PAT 01-2텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.