[LeetCode] 1720. Decode XORed Array
There is a hidden integer array arr that consists of n non-negative integers.
It was encoded into another integer array encoded of length n - 1, such that encoded[i] = arr[i] XOR arr[i + 1]. For example, if arr = [1,0,2,1], then encoded = [1,2,3].
You are given the encoded array. You are also given an integer first, that is the first element of arr, i.e. arr[0].
Return the original array arr. It can be proved that the answer exists and is unique.
Example 1:
Input: encoded = [1,2,3], first = 1
Output: [1,0,2,1]
Explanation: If arr = [1,0,2,1], then first = 1 and encoded = [1 XOR 0, 0 XOR 2, 2 XOR 1] = [1,2,3]
Example 2:
Input: encoded = [6,2,7,3], first = 4
Output: [4,2,0,7,4]
Constraints:
2 <= n <= 104
encoded.length == n - 1
0 <= encoded[i] <= 105
0 <= first <= 105
解码异或后的数组。
未知 整数数组 arr 由 n 个非负整数组成。经编码后变为长度为 n - 1 的另一个整数数组 encoded ,其中 encoded[i] = arr[i] XOR arr[i + 1] 。例如,arr = [1,0,2,1] 经编码后得到 encoded = [1,2,3] 。
给你编码后的数组 encoded 和原数组 arr 的第一个元素 first(arr[0])。
请解码返回原数组 arr 。可以证明答案存在并且是唯一的。
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/decode-xored-array
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
思路
思路是位运算,跟题目提到的XOR异或运算有关。学习位运算的时候,我们学过位运算的如下几条规律
- 相同的数字互相做XOR运算等于0 -
N XOR N = 0
- 任何非零数字与0做异或运算等于这个数字本身 -
N XOR 0 = N
- 异或满足交换律,比如如果
a XOR b = c
, 那么b XOR c = a
复习过如上这几条规律之后,这道题就好做了。因为题目给的 encoded 数组是由原数组数字之间通过 XOR 运算的来的(encoded[i - 1] = arr[i - 1] XOR arr[i]),那么对于原数组里的每个数字 arr[i]而言,我们把这个式子变一下,就得到了:arr[i] = encoded[i - 1] XOR arr[i - 1]
对于这道题,因为 encoded 数组里的每一个元素 encoded[i] = encoded[i - 1] ^ arr[i],那么当我们得到原数组的第一个元素 nums[0],我们可以计算 encoded[1] ^ nums[0]
来得到 nums[1]
。这个方法推广到后面所有的元素就是 nums[i] = encoded[i - 1] ^ nums[i - 1]
。
复杂度
时间O(n)
空间O(1) - 不包含output数组
代码
Java实现
1 |
|