1056. Mice and Rice (25)-PAT甲级真题(queue的用法)

Mice and Rice is the name of a programming contest in which each programmer must write a piece of code to control the movements of a mouse in a given map. The goal of each mouse is to eat as much rice as possible in order to become a FatMouse.

First the playing order is randomly decided for NP programmers. Then every NG programmers are grouped in a match. The fattest mouse in a group wins and enters the next turn. All the losers in this turn are ranked the same. Every NG winners are then grouped in the next match until a final winner is determined.

For the sake of simplicity, assume that the weight of each mouse is fixed once the programmer submits his/her code. Given the weights of all the mice and the initial playing order, you are supposed to output the ranks for the programmers.

Input Specification:

Each input file contains one test case. For each case, the first line contains 2 positive integers: NP and NG (<= 1000), the number of programmers and the maximum number of mice in a group, respectively. If there are less than NG mice at the end of the player’s list, then all the mice left will be put into the last group. The second line contains NP distinct non-negative numbers Wi (i=0,…NP-1) where each Wi is the weight of the i-th mouse respectively. The third line gives the initial playing order which is a permutation of 0,…NP-1 (assume that the programmers are numbered from 0 to NP-1). All the numbers in a line are separated by a space.

Output Specification:

For each test case, print the final ranks in a line. The i-th number is the rank of the i-th programmer, and all the numbers must be separated by a space, with no extra space at the end of the line.

Sample Input:
11 3
25 18 0 46 37 3 19 22 57 56 10
6 0 8 7 10 5 9 1 4 2 3
Sample Output:
5 5 5 2 5 5 5 3 1 3 5

题目大意:np为老鼠的数量,ng为每组最多g个老鼠。先给出np个老鼠的重量,再给出老鼠的初始顺序(第i名的老鼠是第j号,j从0开始)。每ng个老鼠分为一组,对于每组老鼠,选出最重的那个,晋级下一轮比赛,然后依次再以np个老鼠一组分类,然后选出重量最大的。。。直到只剩下一只老鼠,排名为1.输出为老鼠的排名,这个排名是按照原输入老鼠的顺序输出的~
分析:设立结构体node表示老鼠,里面包括weight重量,index是按照排名后的顺序的老鼠的下标,index0是排名前老鼠的下标。rank是最终要输出的老鼠的排名。
先将所有的老鼠按照排名后的顺序依次放入队列中,对于队列中的每一个老鼠,按照分组后选择最大重量的比赛规则,将每次分组获得第一的老鼠放入队列尾部。此处有一点,如果当前剩下的老鼠可以分为group组,那么这一组里面没有晋级的老鼠排名就是group+1.此处解释一下:
因为对于共有group组的老鼠,每组晋级一个,也就是说最终这一轮能晋级的是group个老鼠,那么没有晋级的所有人就是group+1名,就像有4个人晋级下一轮,那么所有没晋级的这一轮就都是并列第5名。
group的计算方法是:如果当前轮次的人数正好可以被每组ng人的ng整除,那么就有人数/ng个组。如果不能被整除,就有剩下来的一些老鼠分为一组,就是人数/ng + 1组。(这是求得group的方法)
cnt用来控制当前的组内第几个人,如果cnt能够被ng整除了说明已经是下一组了,就cnt = 0;否则cnt不断++,同时将最重的老鼠体重赋值给maxn,最重的老鼠的node赋值给maxnode。
最后将结果结构体w排序,按照先前保存的index0的顺序排序,因为题目要求是必须按照题目所给的输入顺序输出的,排序后即可按序输出~

 

[note] 连续函数的局部保号性的证明(函数连续点邻域内的局部保号性)

连续函数的局部保号性:若函数点的某个去心邻域内有定义,点连续,且(或),则存在某个(实心)邻域,对该去心邻域内一切恒有(或)。

它是由连续函数与极限的关系(连续的定义)和极限的局部保号性得到的~

证明:不妨设,根据连续定义,有,根据极限的局部保号性,知存在某个去心邻域,对该去心邻域内一切恒有

[note] 关于二阶导数d^2y/dx^2,n阶导数d^ny/dx^n含义的解释

二阶导数  、n阶  导数的含义的解释:

在维基百科的“导数”词条中,关于“导数的记法”中“莱布尼兹记法”中是这样描述的:

莱布尼兹在他的研究中分别使用 和 来表示函数自变量和应变量(输出值)的有限变化量,而使用  和  来表示“无限小”的变化量(即所谓的“无穷小量”)

要注意的是记号  是一个整体 也是一个整体,而  可以看成一个整体,也可以不严谨地看成 的比值。

而对于n阶导数,莱布尼兹的记法为 ,例如二阶导数为 ,这种记法是在1695年出现的,这里的分子和分母不再具有单独的意义

莱布尼兹的记法中使用  来表示微分算子,比如说二阶的导数就可以看成:

[note] 在x趋近于0,cosx趋近于1-,1-cosx趋近于0+(x->0,cosx->1-)的解释

解释:为什么在 时,

首先要知道,根据单侧极限的定义,的意思是,x从小于0的地方(即0的左边)趋近于0; 的意思是,x从大于0的地方(即0的右边)趋近于0

因为在 时,cosx的函数值只能从小于1的地方趋近于1,而不能从大于1的地方趋近于1,所以说只能说 ,同理,在时,1-cosx的函数值只能从大于0的地方趋近于0,而不能从小于0的地方趋近于0,所以说