A1014 Waiting in Line (30 分)

题目内容

Suppose a bank has N windows open for service. There is a yellow line in front of the windows which devides the waiting area into two parts. The rules for the customers to wait in line are:

The space inside the yellow line in front of each window is enough to contain a line with M customers. Hence when all the N lines are full, all the customers after (and including) the (NM+1)st one will have to wait in a line behind the yellow line.

Each customer will choose the shortest line to wait in when crossing the yellow line. If there are two or more lines with the same length, the customer will always choose the window with the smallest number.

Customeri will take Ti minutes to have his/her transaction processed.

The first N customers are assumed to be served at 8:00am.

Now given the processing time of each customer, you are supposed to tell the exact time at which a customer has his/her business done.

For example, suppose that a bank has 2 windows and each window may have 2 custmers waiting inside the yellow line. There are 5 customers waiting with transactions taking 1, 2, 6, 4 and 3 minutes, respectively. At 08:00 in the morning, customer1 is served at window1 while customer2 is served at window2. Customer3 will wait in front of window1 and customer4 will wait in front of window2. Customer will wait behind the yellow line.

At 08:01, customer1 is done and customer5 enters the line in front of window1 since that line seems shorter now. Customer2 will leave at 08:02, customer4 at 08:06, customer3 at 08:07, and finally customer5 at 08:10.

Input Specification:

Each input file contains one test case. Each case starts with a line containing 4 positive integers: N (≤20, number of windows), M (≤10, the maximum capacity of each line inside the yellow line), K (≤1000, number of customers), and Q (≤1000, number of customer queries).

The next line contains K positive integers, which are the processing time of the K customers.

The last line contains Q positive integers, which represent the customers who are asking about the time they can have their transactions done. The customers are numbered from 1 to K.

Output Specification:

For each of the Q customers, print in one line the time at which his/her transaction is finished, in the format HH:MM where HH is in [08, 17] and MM is in [00, 59]. Note that since the bank is closed everyday after 17:00, for those customers who cannot be served before 17:00, you must output Sorry instead.

Sample Input:

2 2 7 5

1 2 6 4 3 534 2

3 4 5 6 7

Sample Output:

08:07

08:06

08:10

17:00

Sorry

单词

transaction

英 /træn'zækʃ(ə)n; trɑːn-; -'sæk-/ 美 /træn'zækʃən/

n. 交易;事务;办理;会报,学报

题目分析

这道题我差不多前前后后做了四遍,给了我一些教训,首先是30分题一定要提前规划好程序,解决这个问题我们需要哪些数据,说出来有点尴尬,一开始这题我甚至没有用队列,另外一定要仔细读题,是17:00之后来的客人不服务,17:00之前来的客人就算是到半夜也要服务完。另外是Sorry,不是sorry!

这题其实对我来说还是很有难度的,主要是不知道怎么把时间抽象出来,每一个窗口的每一个人服务时间都不同,用什么来保存,怎么保存每个人进入窗口的时间,很多问题。

这道题我最后用了两种方法A掉,一个是用一个int变量模拟时间,哪一个人进入窗口的时间加上服务时间等于现在时间就出队,然后再插入新的人,另一个是直接把人一个一个插入窗口,如果窗口都满了,那么把所有窗口中第一个服务好的哪个人出队列。两种方法的代码我都在下面贴出,思路参考了很多大佬,尤其是一个用65行C代码A掉这题的大佬。

具体代码

从时间角度

#include<stdio.h>
#include<stdlib.h>
#define MAXW 22
#define MAXQ 11
#define MAXP 1005
#define time int

struct Queue
{
int q[MAXQ];
int length;
int front;
int rear;
};

struct Window
{
time endtime;
struct Queue queue;
};

struct Person
{
time poptime;
time dealtime;
};

struct Window window[MAXW];
struct Person person[MAXP];
int N, M, K, Q;
time nowtime = 0;

void push_person(struct Queue *queue,int m)
{
queue->q[queue->rear] = m;
queue->rear = (queue->rear + 1) % (M + 1);
queue->length++;
}

int pop_person(struct Queue *queue)
{
int tmp = queue->q[queue->front];
queue->front = (queue->front + 1) % (M + 1);
queue->length--;
return tmp;
}

int find_min()
{
int tmp = -1;
int min = 999;
for (int i = 0; i

从客户角度

#include<stdio.h>
#include<stdlib.h>
#define MAXW 22
#define MAXQ 11
#define MAXP 1005
#define time int

struct Queue
{
int q[MAXQ];
int length;
int front;
int rear;
};

struct Window
{
time firsttime;
time endtime;
struct Queue queue;
};

struct Person
{
time poptime;
time dealtime;
};

struct Window window[MAXW];
struct Person person[MAXP];
int N, M, K, Q;

void push_person(struct Queue *queue,int m)
{
queue->q[queue->rear] = m;
queue->rear = (queue->rear + 1) % (M + 1);
queue->length++;
}

int pop_person(struct Queue *queue)
{
int tmp = queue->q[queue->front];
queue->front = (queue->front + 1) % (M + 1);
queue->length--;
return tmp;
}

int find_min()
{
int push = 0;
for (int i = 0; i

参考博客

1014 Waiting in Line (30 point(s)) - C语言 PAT 甲级

PTA A1014的更多相关文章

  1. 浙大PTA - - 堆中的路径

    题目链接:https://pta.patest.cn/pta/test/1342/exam/4/question/21731 本题即考察最小堆的基本操作: #include "iostrea ...

  2. 浙大PTA - - File Transfer

    题目链接:https://pta.patest.cn/pta/test/1342/exam/4/question/21732 #include "iostream" #includ ...

  3. ERROR<53761> - Plugins - conn=-1 op=-1 msgId=-1 - Connection Bind through PTA failed (91). Retrying...

    LDAP6.3在DSCC控制台启动实例完成,但是操作状态显示“意外错误”,查看日志如下: 04/May/2016:21:10:39 +0800] - Sun-Java(tm)-System-Direc ...

  4. PTA中提交Java程序的一些套路

    201708新版改版说明 PTA与2017年8月已升级成新版,域名改为https://pintia.cn/,官方建议使用Firefox与Chrome浏览器. 旧版 PTA 用户首次在新版系统登录时,请 ...

  5. PTA分享码-Java

    主要用于Java语法练习,非竞赛类题目.   1. Java入门          959dbf0b7729daa61d379ec95fb8ddb0   2. Java基本语法   23bd8870e ...

  6. C语言第一次实验报告————PTA实验1.2.3内容

    一.PTA实验作业 题目1.温度转换 本题要求编写程序,计算华氏温度100°F对应的摄氏温度.计算公式:C=5×(F−32)/9,式中:C表示摄氏温度,F表示华氏温度,输出数据要求为整型. 1.实验代 ...

  7. PTA题---求两个有序序列中位数所体现的思想。

    ---恢复内容开始--- 近日,在做PTA题目时,遇到了一个这样的题,困扰了很久.题目如下:已知有两个等长的非降序序列S1, S2, 设计函数求S1与S2并集的中位数.有序序列A​0​​,A​1​​, ...

  8. 第十四,十五周PTA作业

    1.第十四周part1 7-3 #include<stdio.h> int main() { int n; scanf("%d",&n); int a[n]; ...

  9. 第七周PTA作业

    第一题: #include<stdio.h> int main() { ; ; ){ sum=sum+i; i++; } printf("sum = %d\n",sum ...

随机推荐

  1. DotNetCore 3.0 助力 WPF本地化

    概览 随着我们的应用程序越来越受欢迎,我们的下一步将要开发多语言功能.方便越来越多的国家使用我们中国的应用程序, 基于 WPF 本地化,我们很多时候使用的是系统资源文件,可是动态切换本地化,就比较麻烦 ...

  2. k好数(动态规划)

    问题描述 如果一个自然数N的K进制表示中任意的相邻的两位都不是相邻的数字,那么我们就说这个数是K好数.求L位K进制数中K好数的数目.例如K = 4,L = 2的时候,所有K好数为11.13.20.22 ...

  3. input 上传图片

    <!--多图上传--><input name="image_mortgage_property[]" type="file" multiple ...

  4. CAD数据分块,偏移校准,加载到百度地图、高德地图、谷歌等地图上

    前面分享过一篇如何将CAD海量数据显示在百度地图上(百度地图Canvas实现十万CAD数据秒级加载),但是很多开发者在CAD数据提取时遇到了问题,所以接下来的文章将介绍如何将CAD数据提取. 准备软件 ...

  5. 《阿里巴巴Java开发手册1.4.0》阅读总结与心得(二)

    (六)并发处理 12. [推荐] 在并发场景下, 通过双重检查锁(double-checked locking) 实现延迟初始化的优化问题隐患(可参考 The "Double-Checked ...

  6. Java8 日期 API 业务使用

    最近在做账单结算业务,需要根据客户选择的结算方式来推算下一次结算日期以及该次结算日期段. 推算日期这样的业务直男君以前就写过,只不过使用的是熟悉的 java.util.date 和 java.util ...

  7. Fire Balls 07——砖块的淡出,消失以及砖塔的下落

    版权申明: 本文原创首发于以下网站: 博客园『优梦创客』的空间:https://www.cnblogs.com/raymondking123 优梦创客的官方博客:https://91make.top ...

  8. CodeForces-714B-Filya and Homework+思路

    Filya and Homework 题意: 给定一串数字,任选一个数a,把若干个数加上a,把若干个数减去a,能否使得数列全部相同: 思路: 我开始就想找出平均数,以为只有和偶数的可以,结果wa在 1 ...

  9. c++ uconcontext.h实现协程

    目录 c++ uconcontext.h实现协程 什么是协程? ucontext.h库 库的使用示例 代码地址 c++ uconcontext.h实现协程 什么是协程? 协程是一种程序组件,是由子例程 ...

  10. hihocoder [Offer收割]编程练习赛18 C 最美和弦(dp)

    题目链接:http://hihocoder.com/problemset/problem/1532 题解:一道基础的dp,设dp[i][j][k][l]表示处理到第几个数,当前是哪个和弦错了几次初始x ...