LeetCode每日一题(1734. Decode XORed Permutation)

There is an integer array perm that is a permutation of the first n positive integers, where n is always odd.

It was encoded into another integer array encoded of length n - 1, such that encoded[i] = perm[i] XOR perm[i + 1]. For example, if perm = [1,3,2], then encoded = [2,1].

Given the encoded array, return the original array perm. It is guaranteed that the answer exists and is unique.

Example 1:

Input: encoded = [3,1]
Output: [1,2,3]

Explanation: If perm = [1,2,3], then encoded = [1 XOR 2,2 XOR 3] = [3,1]

Example 2:

Input: encoded = [6,5,4,6]
Output: [2,4,1,5,3]

Constraints:

  • 3 <= n < 105
  • n is odd.
  • encoded.length == n - 1

答案看不懂系列,盯着人家给的答案看了半天,总算理解了人家的用意

整体来看,我们有了encoded, 所以我们只要找到perm[0], 剩下的元素我们都可以很简单的算出来。

关于perm[0], 题目给出的条件里n为奇数是关键

假设x = perm[0] ^ perm[1] ^ perm[2]...perm[n-1], 已知perm为 1 到 n 的数组, 所以x = 1 ^ 2 ^3...n, 而(perm[1] ^ perm[2]) ^ (perm[3] ^ perm[4])...(perm[n-2] ^ perm[n-1])可以转换成encoded[1] ^ encoded[3] ^ encoded[5] ... encoded[n-2], 所以最终可以推出perm[0] = 1 ^ 2 ^ 3...n ^ encoded[1] ^ encoded[3] ^ encoded[5]... encoded[n-2]


impl Solution {
    pub fn decode(encoded: Vec<i32>) -> Vec<i32> {
        let mut ans = vec![0; encoded.len() + 1];
        for i in 0..=ans.len() as i32 {
            ans[0] ^= i;
            if i < ans.len() as i32 && i % 2 == 1 {
                ans[0] ^= encoded[i as usize];
            }
        }
        for i in 1..ans.len() {
            ans[i] = ans[i - 1] ^ encoded[i - 1];
        }
        ans
    }
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值