UVA - 729 The Hamming Distance Problem (全排列)

来源:互联网 发布:肯德基 麦当劳 知乎 编辑:程序博客网 时间:2024/06/06 02:33

  The Hamming Distance Problem 

The Hamming distance between two strings of bits (binary integers) is the number of corresponding bit positions that differ. This can be found by using XOR on corresponding bits or equivalently, by adding corresponding bits (base 2) without a carry. For example, in the two bit strings that follow:

                               A      0 1 0 0 1 0 1 0 0 0                               B      1 1 0 1 0 1 0 1 0 0                            A XOR B = 1 0 0 1 1 1 1 1 0 0

The Hamming distance (H) between these 10-bit strings is 6, the number of 1's in the XOR string.

Input 

Input consists of several datasets. The first line of the input contains the number of datasets, and it's followed by a blank line. Each dataset containsN, the length of the bit strings and H, the Hamming distance, on the same line. There is a blank line between test cases.

Output 

For each dataset print a list of all possible bit strings of length N that are Hamming distanceH from the bit string containing all 0's (origin). That is, all bit strings of lengthN with exactly H1's printed in ascending lexicographical order.


The number of such bit strings is equal to the combinatorial symbol C(N,H). This is the number of possible combinations ofN-H zeros and H ones. It is equal to

\begin{displaymath}{N!} \over {(N-H)! H!}\end{displaymath}

This number can be very large. The program should work for $1 \le H \le N\le 16$.

Print a blank line between datasets.

Sample Input 

14 2

Sample Output 

001101010110100110101100


解析:给出两个数,一个是总位数,另一个是1的位数,求全排列


#include <iostream>#include <algorithm>#include <string.h>using namespace std;int main() {int t;int n,h;while(cin >> t) {while( t-- ) {cin >> n >> h;int a[30];memset(a,0,sizeof(a));for(int i = 0; i < n-h; i++) {a[i] = 0;}for(int i = n - h; i < n; i++) {a[i] = 1;}do {for(int i = 0; i < n; i++) {cout << a[i];}cout << endl;} while( next_permutation(a,a+n));if(t) {cout<<endl;}}}return 0;}


0 0
原创粉丝点击