程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> 1026. Table Tennis (30)[排序+模擬+邏輯復雜]——PAT (Advanced Level) Practise

1026. Table Tennis (30)[排序+模擬+邏輯復雜]——PAT (Advanced Level) Practise

編輯:C++入門知識

1026. Table Tennis (30)[排序+模擬+邏輯復雜]——PAT (Advanced Level) Practise


題目信息

1026. Table Tennis (30)

時間限制400 ms
內存限制65536 kB
代碼長度限制16000 B

A table tennis club has N tables available to the public. The tables are numbered from 1 to N. For any pair of players, if there are some tables open when they arrive, they will be assigned to the available table with the smallest number. If all the tables are occupied, they will have to wait in a queue. It is assumed that every pair of players can play for at most 2 hours.

Your job is to count for everyone in queue their waiting time, and for each table the number of players it has served for the day.

One thing that makes this procedure a bit complicated is that the club reserves some tables for their VIP members. When a VIP table is open, the first VIP pair in the queue will have the priviledge to take it. However, if there is no VIP in the queue, the next pair of players can take it. On the other hand, if when it is the turn of a VIP pair, yet no VIP table is available, they can be assigned as any ordinary players.

Input Specification:

Each input file contains one test case. For each case, the first line contains an integer N (<=10000) - the total number of pairs of players. Then N lines follow, each contains 2 times and a VIP tag: HH:MM:SS - the arriving time, P - the playing time in minutes of a pair of players, and tag - which is 1 if they hold a VIP card, or 0 if not. It is guaranteed that the arriving time is between 08:00:00 and 21:00:00 while the club is open. It is assumed that no two customers arrives at the same time. Following the players’ info, there are 2 positive integers: K (<=100) - the number of tables, and M (< K) - the number of VIP tables. The last line contains M table numbers.

Output Specification:

For each test case, first print the arriving time, serving time and the waiting time for each pair of players in the format shown by the sample. Then print in a line the number of players served by each table. Notice that the output must be listed in chronological order of the serving time. The waiting time must be rounded up to an integer minute(s). If one cannot get a table before the closing time, their information must NOT be printed.

Sample Input:
9
20:52:00 10 0
08:00:00 20 0
08:02:00 30 0
20:51:00 10 0
08:10:00 5 0
08:12:00 10 1
20:50:00 10 0
08:01:30 15 1
20:53:00 10 1
3 1
2
Sample Output:
08:00:00 08:00:00 0
08:01:30 08:01:30 0
08:02:00 08:02:00 0
08:12:00 08:16:30 5
08:10:00 08:20:00 10
20:50:00 20:50:00 0
20:51:00 20:51:00 0
20:52:00 20:52:00 0
3 3 2

解題思路

維護用戶隊列、空閒桌子隊列和桌子到期隊列。
注意:超過兩小時需截斷,等待時間需四捨五入,8點前需等待,21點關門

AC代碼

#include 
#include 
#include 
#include 
#include 
using namespace std;
bool table[10005], isvip[10005];
int tableTimes[10005];
struct node{
    int arriveTime, useTime;
    bool vip;
    node(){}
    node(int t, int tu, bool v):arriveTime(t), useTime(tu), vip(v){}
    bool operator<(const node& b)const{
        return arriveTime < b.arriveTime;
    }
};
bool operator<(const pair &a, const pair &b){
    return a.first < b.first;
}
set arriveList; //顧客到達列表
priority_queue, vector >, greater > > que; //乒乓球台到期隊列
set freeList; //空閒台隊列

int main()
{
    int n, tableNum, tableVipNum, tableVipNow,a, b, c, t, vip;
    int nowTime = 8*3600;
    scanf("%d", &n);
    for (int i = 0; i < n; ++i){
        scanf("%d:%d:%d%d%d", &a, &b, &c, &t, &vip);
        arriveList.insert(node(a*3600 + b*60 + c, t, vip == 1));
    }
    scanf("%d%d", &tableNum, &tableVipNum);
    for (int i = 0; i < tableNum; ++i){
        freeList.insert(i);//初始化空閒台
    }
    tableVipNow = tableVipNum;
    for (int i = 0; i < tableVipNum; ++i){
        scanf("%d", &vip);
        isvip[vip-1] = true;
    }
    while (!arriveList.empty() && nowTime < 21*3600){
        t = arriveList.begin()->arriveTime;
        if (!freeList.empty() && t <= nowTime){
            if (tableVipNow > 0){
                set::iterator it = arriveList.begin();
                while (it != arriveList.end() && nowTime >= it->arriveTime){
                    if (it->vip){
                        break;
                    }
                    ++it;
                }
                if (it != arriveList.end() && nowTime >= it->arriveTime){
                    --tableVipNow;
                    set::iterator itable = freeList.begin();
                    while (!isvip[*itable]){
                        ++itable;
                    }
                    t = it->arriveTime;
                    printf("%02d:%02d:%02d %02d:%02d:%02d %d\n", t/3600, t%3600/60, t%60, nowTime/3600, nowTime%3600/60, nowTime%60, (nowTime - t + 30)/60); //四捨五入
                    tableTimes[*itable]++;
                    que.push(make_pair(nowTime + min(120, it->useTime) * 60, *itable)); //超過兩小時截斷
                    freeList.erase(*itable);
                    arriveList.erase(*it);
                    continue;
                }
            }
            printf("%02d:%02d:%02d %02d:%02d:%02d %d\n", t/3600, t%3600/60, t%60, nowTime/3600, nowTime%3600/60, nowTime%60, (nowTime - t + 30)/60);
            tableTimes[*freeList.begin()]++;
            que.push(make_pair(nowTime + min(120, arriveList.begin()->useTime) * 60, *freeList.begin())); //截斷
            if (isvip[*freeList.begin()]){
                --tableVipNow;
            }
            freeList.erase(*freeList.begin());
            arriveList.erase(*arriveList.begin());
            continue;
        }else {
            if (que.empty() || (!freeList.empty() && que.top().first > t)){
                nowTime = t;
            }else{
                if (nowTime < que.top().first){
                    nowTime = que.top().first;
                }
                while (!que.empty() && nowTime >= que.top().first){
                    freeList.insert(que.top().second);
                    if (isvip[que.top().second]) {
                        ++tableVipNow;
                    }
                    que.pop();
                }
            }
        }
    }
    printf("%d", tableTimes[0]);
    for (int i = 1; i < tableNum; ++i){
        printf(" %d", tableTimes[i]);
    }
    return 0;
}

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved