Problem 2680 --Heaps - Maximum Heap

2680: Heaps - Maximum Heap

"
Time Limit $2$ 秒/Second(s) Memory Limit $512$ 兆字节/Megabyte(s)
提交总数 $0$ 正确数量 $2$
裁判形式 标准裁判/Standard Judge 我的状态 尚未尝试
难度 分类标签 STL

Maximum Heap 

A binary heap which satisfies max-heap property is called max-heap. In a max-heap, for every node ii other than the root, A[i]≤A[parent(i)], that is, the value of a node is at most the value of its parent. The largest element in a max-heap is stored at the root, and the subtree rooted at a node contains values no larger than that contained at the node itself. 

Here is an example of a max-heap. 

Write a program which reads an array and constructs a max-heap from the array based on the following pseudo code. 

maxHeapify(A,i) move the value of A[i] down to leaves to make a sub-tree of node i a max-heap. Here, H is the size of the heap. 

1   maxHeapify(A, i) 

2      l = left(i) 

3      r = right(i) 

4       // select the node which has the maximum value 

5      if l ≤ H and A[l] > A[i] 

6              largest = l 

7      else 

8              largest = i 

9       if r ≤ H and A[r] > A[largest] 

10            largest = r 

11 

12     if largest ≠ i // value of children is larger than that of i 

13            swap A[i] and A[largest] 

14            maxHeapify(A, largest) // call recursively 

The following procedure buildMaxHeap(A) makes AA a max-heap by performing maxHeapify in a bottom-up manner. 

1  buildMaxHeap(A) 

2       for i = H/2 downto 1 

3            maxHeapify(A, i)

In the first line, an integer H is given. In the second line,H integers which represent elements in the binary heap are given in order of node id (from 1 to H).
Print values of nodes in the max-heap in order of their id (from 1 to H). Print a single space character before each value.
10
4 1 3 2 16 9 10 14 8 7
 16 14 10 8 7 9 3 2 4 1

1≤H≤500,000 

−2,000,000,000≤ value of a node ≤2,000,000,000

推荐代码 查看2680 所有题解 上传题解视频得图灵币

本题记录 用 户(点击查看用户) 运行号(点击购买题解) 时 间
算法最快[$209 $ms] 王天驰 807860 2022-01-21 21:19:15
内存最少[$4036 $KB] 王天驰 807860 2022-01-21 21:19:15
第一AC 王天驰 807860 2022-01-21 21:19:15
第一挑战 王天驰 807860 2022-01-21 21:19:15

赛题来源/所属竞赛 会津大学《挑战数据结构与算法》 挑战数据结构与算法

竞赛编号 竞赛名称 竞赛时间 访问比赛