HDU-4810 wall painting (combined mathematics)

Source: Internet
Author: User

Description

Ms. fang loves painting very much. she paints GFW (Great funny wall) every day. every day before painting, she produces a wonderful color of Pigments by mixing water and some bags of pigments. on the k-th day, she will select K specific bags of pigments and mix them to get a color of pigments which she will use that day. when she mixes a bag of pigments with color a and a bag of pigments with color B, she will get pigments with color a xor B.
When she mixes two bags of pigments with the same color, she will get color zero for some strange reasons. now, her husband mr. fang has no idea about which K bags of pigments Ms. fang will select on the k-th day. he wonders the sum of the colors Ms. fang will get with different plans.

For example, assume n = 3, K = 2 and three bags of pigments with color 2, 1, 2. she can get color 3, 3, 0 with 3 different plans. in this instance, the answer Mr. fang wants to get on the second day is 3 + 3 + 0 = 6.
Mr. Fang is so busy that he doesn't want to spend too much time on it. Can you help him?
You shoshould tell mr. Fang the answer from the first day to the n-th day.

Input

There are several test cases, please process till EOF.
For each test case, the first line contains a single integer N (1 <= n <= 10 3 ). the second line contains N integers. the I-th integer represents the color of the pigments in the I-th bag.

Output

For each test case, output n integers in a line representing the answers (mod 10 6 + 3) from the first day to the n-th day.

Sample Input

 41 2 10 1 
 

Sample output

 14 36 30 8 
Question: Give N and K, and select K excludes or and

Idea: First, we know that 0 and 1 are different or do not affect the result. Only when 1 and 1 are different or the number of 1 is odd will the result be affected, therefore, we convert each number into a binary number, calculate the number of 1 on each bit, and use the combined mathematics to solve the problem.

#include <iostream>#include <cstdio>#include <cstring>#include <algorithm>typedef long long ll;using namespace std;const int maxn = 1005;const ll mod = 1000003;ll C[maxn][maxn], ans[maxn];int n, cnt[maxn];void init() {for (int i = 0; i <= 1001; i++)C[i][0] = C[i][i] = 1;for (int i = 2; i <= 1001; i++)for (int j = 1; j < i; j++) C[i][j] = (C[i-1][j] + C[i-1][j-1]) % mod;}void cal(int x) {int cur = 0;while (x) {if (x & 1) cnt[cur]++;cur++;x >>= 1;}}int main() {init();int x;while (scanf("%d", &n) != EOF) {memset(cnt, 0, sizeof(cnt));memset(ans, 0, sizeof(ans));for (int i = 1; i <= n; i++) {scanf("%d", &x);cal(x);}for (int i = 1; i <= n; i++)for (int j = 0; j < 32; j++) for (int k = 1; k <= i; k += 2) {ans[i] += (C[cnt[j]][k] % mod * C[n-cnt[j]][i-k] % mod) * (1<<j) % mod;ans[i] %= mod;}for (int i = 1; i < n; i++)printf("%lld ", ans[i]);printf("%lld\n", ans[n]);}return 0;}



HDU-4810 wall painting (combined mathematics)

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.