-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path1829-MaximumXORForEachQuery.go
More file actions
107 lines (96 loc) · 3.69 KB
/
1829-MaximumXORForEachQuery.go
File metadata and controls
107 lines (96 loc) · 3.69 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
package main
// 1829. Maximum XOR for Each Query
// You are given a sorted array nums of n non-negative integers and an integer maximumBit.
// You want to perform the following query n times:
// 1. Find a non-negative integer k < 2maximumBit
// such that nums[0] XOR nums[1] XOR ... XOR nums[nums.length-1] XOR k is maximized.
// k is the answer to the ith query.
// 2. Remove the last element from the current array nums.
// Return an array answer, where answer[i] is the answer to the ith query.
// Example 1:
// Input: nums = [0,1,1,3], maximumBit = 2
// Output: [0,3,2,3]
// Explanation: The queries are answered as follows:
// 1st query: nums = [0,1,1,3], k = 0 since 0 XOR 1 XOR 1 XOR 3 XOR 0 = 3.
// 2nd query: nums = [0,1,1], k = 3 since 0 XOR 1 XOR 1 XOR 3 = 3.
// 3rd query: nums = [0,1], k = 2 since 0 XOR 1 XOR 2 = 3.
// 4th query: nums = [0], k = 3 since 0 XOR 3 = 3.
// Example 2:
// Input: nums = [2,3,4,7], maximumBit = 3
// Output: [5,2,6,5]
// Explanation: The queries are answered as follows:
// 1st query: nums = [2,3,4,7], k = 5 since 2 XOR 3 XOR 4 XOR 7 XOR 5 = 7.
// 2nd query: nums = [2,3,4], k = 2 since 2 XOR 3 XOR 4 XOR 2 = 7.
// 3rd query: nums = [2,3], k = 6 since 2 XOR 3 XOR 6 = 7.
// 4th query: nums = [2], k = 5 since 2 XOR 5 = 7.
// Example 3:
// Input: nums = [0,1,2,2,5,7], maximumBit = 3
// Output: [4,3,6,4,6,7]
// Constraints:
// nums.length == n
// 1 <= n <= 10^5
// 1 <= maximumBit <= 20
// 0 <= nums[i] < 2maximumBit
// nums is sorted in ascending order.
import "fmt"
func getMaximumXor(nums []int, maximumBit int) []int {
sum, n := 0, len(nums)
for _, v := range nums {
sum ^= v
}
res := make([]int, n)
for i := range nums {
k := 0
for j := maximumBit - 1; j >= 0; j-- {
if (sum >> j & 1) == 0 { // 第 j 位是 0
k |= 1 << j // k 的第 j 位置 1
}
}
res[i] = k
sum ^= nums[n - 1 - i]
}
return res
}
func getMaximumXor1(nums []int, maximumBit int) []int {
n := len(nums)
res := make([]int, n)
res[0] = nums[0]
for k,v := range nums {
if k == 0 { continue }
res[k] = res[k-1] ^ v
}
for i, v := range res {
res[i] = v ^ ((1 << maximumBit) - 1)
}
for i := 0; i < n / 2; i++ {
res[i], res[n - i - 1] = res[n - i - 1], res[i]
}
return res
}
func main() {
// Example 1:
// Input: nums = [0,1,1,3], maximumBit = 2
// Output: [0,3,2,3]
// Explanation: The queries are answered as follows:
// 1st query: nums = [0,1,1,3], k = 0 since 0 XOR 1 XOR 1 XOR 3 XOR 0 = 3.
// 2nd query: nums = [0,1,1], k = 3 since 0 XOR 1 XOR 1 XOR 3 = 3.
// 3rd query: nums = [0,1], k = 2 since 0 XOR 1 XOR 2 = 3.
// 4th query: nums = [0], k = 3 since 0 XOR 3 = 3.
fmt.Println(getMaximumXor([]int{0,1,1,3}, 2)) // [0,3,2,3]
// Example 2:
// Input: nums = [2,3,4,7], maximumBit = 3
// Output: [5,2,6,5]
// Explanation: The queries are answered as follows:
// 1st query: nums = [2,3,4,7], k = 5 since 2 XOR 3 XOR 4 XOR 7 XOR 5 = 7.
// 2nd query: nums = [2,3,4], k = 2 since 2 XOR 3 XOR 4 XOR 2 = 7.
// 3rd query: nums = [2,3], k = 6 since 2 XOR 3 XOR 6 = 7.
// 4th query: nums = [2], k = 5 since 2 XOR 5 = 7.
fmt.Println(getMaximumXor([]int{2,3,4,7}, 3)) // [5,2,6,5]
// Example 3:
// Input: nums = [0,1,2,2,5,7], maximumBit = 3
// Output: [4,3,6,4,6,7]
fmt.Println(getMaximumXor([]int{0,1,2,2,5,7}, 3)) // [4,3,6,4,6,7]
fmt.Println(getMaximumXor1([]int{0,1,1,3}, 2)) // [0,3,2,3]
fmt.Println(getMaximumXor1([]int{2,3,4,7}, 3)) // [5,2,6,5]
fmt.Println(getMaximumXor1([]int{0,1,2,2,5,7}, 3)) // [4,3,6,4,6,7]
}