P1863, leetcode
Theorem 1
Let be a binary sequence of length consisting of 0s and 1s.
- If contains at least one 1, then the sum of XOR sums of all subsets of is .
- If contains only 0s, then the sum is 0.
Proof
Definitions and Setup
- XOR sum of a subset: The result of applying XOR () to all elements in the subset (equivalent to parity of 1s count).
- Objective: Count the number of subsets with XOR sum = 1 (i.e., subsets with an odd number of 1s).
Case 1: All elements are 0
- Every subset has XOR sum 0.
- Total sum: .
Case 2: At least one 1 is present
Let be the count of 1s in , and be the count of 0s.
Step 1: Choose an odd number of 1s from the available.
- By the binomial theorem:
Derivation: From
and
, subtract to get:
- By the binomial theorem:
Step 2: Freely include any of the 0s (they do not affect the XOR sum).
- Choices for 0s: .
Total subsets with XOR sum 1:
Example Verification
- For 1s:
- Subsets with odd 1s:
- For (with 2 extra 0s):
- Total valid subsets:
Conclusion
The proof leverages the binomial theorem to count parity-constrained subsets, establishing that the XOR sum over all subsets is when 1s exist, and 0 otherwise.