1863. Sum of All Subset XOR Totals(C语言)回溯法解决子集问题

该博客介绍了如何使用C语言的回溯法解决子集XOR总和的问题。给定一个整数数组,任务是求出所有子集的XOR总和,并返回这些总和的总和。例如,对于输入数组[1,3],输出为6,因为所有子集的XOR总和为0+1+3+2=6。博客通过示例详细解释了算法的运行过程,并提供了完整的C语言代码实现。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

1863. Sum of All Subset XOR Totals(C语言)

回溯法解决子集问题

题目

The XOR total of an array is defined as the bitwise XOR of all its elements, or 0 if the array is empty.

For example, the XOR total of the array [2,5,6] is 2 XOR 5 XOR 6 = 1.
Given an array nums, return the sum of all XOR totals for every subset of nums.

Note: Subsets with the same elements should be counted multiple times.

An array a is a subset of an array b if a can be obtained from b by deleting some (possibly zero) elements of b.

Example 1:
Input: nums = [1,3]
Output: 6
Explanation: The 4 subsets of [1,3] are:

  • The empty subset has an XOR total of 0.
  • [1] has an XOR total of 1.
  • [3] has an XOR total of 3.
  • [1,3] has an XOR total of 1 XOR 3 = 2.
    0 + 1 + 3 + 2 = 6

Example 2:
Input: nums = [5,1,6]
Output: 28
Explanation: The 8 subsets of [5,1,6] are:

  • The empty subset has an XOR total of 0.
  • [5] has an XOR total of 5.
  • [1] has an XOR total of 1.
  • [6] has an XOR total of 6.
  • [5,1] has an XOR total of 5 XOR 1 = 4.
  • [5,6] has an XOR total of 5 XOR 6 = 3.
  • [1,6] has an XOR total of 1 XOR 6 = 7.
  • [5,1,6] has an XOR total of 5 XOR 1 XOR 6 = 2.
    0 + 5 + 1 + 6 + 4 + 3 + 7 + 2 = 28

Example 3:
Input: nums = [3,4,5,6,7,8]
Output: 480
Explanation: The sum of all XOR totals for every subset is 480.

Constraints:
1 <= nums.length <= 12
1 <= nums[i] <= 20

解答

long long int sum;
void Backtrack(int * nums, int numsSize, int pre_re)//nums是选择列表
{
    int i;
    for(i = 0; i < numsSize; i++)
    {
        int re = pre_re^nums[i];
        sum += re;

        if(i == numsSize-1)//结束条件
            return;

        int *temp = (int *)malloc(sizeof(int)*(numsSize-i-1));
        int j;
        for(j = 0; j < numsSize - i -1; j++)
        {
            temp[j] = nums[j+i+1];
        }

        Backtrack(temp, numsSize-i-1, re);
    }
}
int subsetXORSum(int* nums, int numsSize){
    sum = 0;
    Backtrack(nums, numsSize, 0);
    return sum;
}

总结

思路:利用回溯法解决子集问题
以例2为例:
在这里插入图片描述
回溯法的结构:

int backtrack(路径, 选择列表)
{
	if(满足结束条件)
	{
		...
		return ;
	}
	for 选择 in 选择列表:
	{
		选择(更新路径和选择列表)
		backtrack(路径,选择列表);
		撤销选择(还原路径和选择列表)
	}
}
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值