编程介的小学生 2017-03-13 12:12 采纳率: 20.5%
浏览 716
已采纳

Key Insertion

As an employee of the Macrohard Company, you have been asked to implement the new data structure that would be used to store some integer keys.

The keys must be stored in a special ordered collection that can be considered as an array A, which has an infinite number of locations, numbered starting from 1. Initially all locations are empty. The following operation must be supported by the collection: Insert(L, K), where L is the location in the array and K is some positive integer value.

The operation must be processed as follows:

If A[L] is empty, set A[L] <- K.
If A[L] is not empty, perform Insert(L+1, A[L]) and after that set A[L] <- K.
Given N integer numbers L1, L2, ..., LN you have to output the contents of the array after a sequence of the following operations:

Insert(L1, 1)
Insert(L2, 2)
...
Insert(LN, N)

Input

The first line of the input contains N - the number of $Insert$ operations and M - the maximal position that can be used in the Insert operation (1 <= N <= 131,072, 1 <= M <= 131,072).

Next line contains N integer numbers Li that describe Insert operations to be performed (1 <= Li <= M).

Output

Output the contents of the array after a given sequence of Insert operations. On the first line print W - the number of the greatest location that is not empty. After that output W integer numbers - A[1], A[2], ..., A[W]. Output zeroes for empty locations.

This problem contains multiple test cases!

The first line of a multiple input is an integer N, then a blank line followed by N input blocks. Each input block is in the format indicated in the problem description. There is a blank line between input blocks.

The output format consists of N output blocks. There is a blank line between output blocks.

Sample Input

1

5 4
3 3 4 1 3

Sample Output

6
4 0 5 2 3 1

  • 写回答

2条回答

  • threenewbee 2017-03-23 15:52
    关注
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥20 sub地址DHCP问题
  • ¥15 delta降尺度计算的一些细节,有偿
  • ¥15 Arduino红外遥控代码有问题
  • ¥15 数值计算离散正交多项式
  • ¥30 数值计算均差系数编程
  • ¥15 redis-full-check比较 两个集群的数据出错
  • ¥15 Matlab编程问题
  • ¥15 训练的多模态特征融合模型准确度很低怎么办
  • ¥15 kylin启动报错log4j类冲突
  • ¥15 超声波模块测距控制点灯,灯的闪烁很不稳定,经过调试发现测的距离偏大