-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path406-QueueReconstructionByHeight.go
More file actions
81 lines (69 loc) · 3.93 KB
/
406-QueueReconstructionByHeight.go
File metadata and controls
81 lines (69 loc) · 3.93 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
package main
// 406. Queue Reconstruction by Height
// You are given an array of people, people, which are the attributes of some people in a queue (not necessarily in order).
// Each people[i] = [hi, ki] represents the ith person of height hi with exactly ki other people in front who have a height greater than or equal to hi.
// Reconstruct and return the queue that is represented by the input array people.
// The returned queue should be formatted as an array queue, where queue[j] = [hj, kj] is the attributes of the jth person in the queue (queue[0] is the person at the front of the queue).
// Example 1
// Input: people = [[7,0],[4,4],[7,1],[5,0],[6,1],[5,2]]
// Output: [[5,0],[7,0],[5,2],[6,1],[4,4],[7,1]]
// Explanation:
// Person 0 has height 5 with no other people taller or the same height in front.
// Person 1 has height 7 with no other people taller or the same height in front.
// Person 2 has height 5 with two persons taller or the same height in front, which is person 0 and 1.
// Person 3 has height 6 with one person taller or the same height in front, which is person 1.
// Person 4 has height 4 with four people taller or the same height in front, which are people 0, 1, 2, and 3.
// Person 5 has height 7 with one person taller or the same height in front, which is person 1.
// Hence [[5,0],[7,0],[5,2],[6,1],[4,4],[7,1]] is the reconstructed queue.
// Example 2:
// Input: people = [[6,0],[5,0],[4,0],[3,2],[2,2],[1,4]]
// Output: [[4,0],[5,0],[2,2],[3,2],[1,4],[6,0]]
// Constraints:
// 1 <= people.length <= 2000
// 0 <= hi <= 10^6
// 0 <= ki < people.length
// It is guaranteed that the queue can be reconstructed.
import "fmt"
import "sort"
func reconstructQueue(people [][]int) [][]int {
sort.Slice(people,func(i, j int) bool {
return people[i][0] > people[j][0] || (people[i][0] == people[j][0] && people[i][1] < people[j][1])
})
res := [][]int{}
for i := 0; i < len(people); i++ {
res = append(res, people[i])
if people[i][1] < len(res) {
copy(res[people[i][1] + 1 : len(res)], res[people[i][1] : len(res) - 1])
res[people[i][1]] = people[i]
}
}
return res
}
func reconstructQueue1(people [][]int) [][]int {
// 先将身高从大到小排序,确定最大个子的相对位置
sort.Slice(people, func(i, j int) bool {
if people[i][0] == people[j][0] {
return people[i][1] < people[j][1] // 当身高相同时,将K按照从小到大排序
}
return people[i][0] > people[j][0] // 身高按照由大到小的顺序来排
})
// 再按照K进行插入排序,优先插入K小的
for i, p := range people {
copy(people[p[1]+1 : i+1], people[p[1] : i+1]) // 空出一个位置
people[p[1]] = p
}
return people
}
func main() {
// Person 0 has height 5 with no other people taller or the same height in front.
// Person 1 has height 7 with no other people taller or the same height in front.
// Person 2 has height 5 with two persons taller or the same height in front, which is person 0 and 1.
// Person 3 has height 6 with one person taller or the same height in front, which is person 1.
// Person 4 has height 4 with four people taller or the same height in front, which are people 0, 1, 2, and 3.
// Person 5 has height 7 with one person taller or the same height in front, which is person 1.
// Hence [[5,0],[7,0],[5,2],[6,1],[4,4],[7,1]] is the reconstructed queue.
fmt.Println(reconstructQueue([][]int{{7,0},{4,4},{7,1},{5,0},{6,1},{5,2}})) // [[5,0],[7,0],[5,2],[6,1],[4,4],[7,1]]
fmt.Println(reconstructQueue([][]int{{6,0},{5,0},{4,0},{3,2},{2,2},{1,4}})) // [[4,0],[5,0],[2,2],[3,2],[1,4],[6,0]]
fmt.Println(reconstructQueue1([][]int{{7,0},{4,4},{7,1},{5,0},{6,1},{5,2}})) // [[5,0],[7,0],[5,2],[6,1],[4,4],[7,1]]
fmt.Println(reconstructQueue1([][]int{{6,0},{5,0},{4,0},{3,2},{2,2},{1,4}})) // [[4,0],[5,0],[2,2],[3,2],[1,4],[6,0]]
}