UVA 729 The Hamming Distance Problem

UVA-729

题意:balabala了一堆,其实就是求n位01串中有 h 个1的所有序列。
解题思路:STL中有一个求字符串字典序下一个字符的函数。next_permutation(c,c+n)。第一个是起始位置,后一个是结束位置。类似sort。然后只要把第一个(n-h个)0+ (h个)1的串弄出来。就好了。。

/*************************************************************************
    > File Name: UVA-729.cpp
    > Author: Narsh
    > 
    > Created Time: 2016年07月26日 星期二 16时33分32秒
 ************************************************************************/

#include <iostream>
#include <algorithm>
#include <cstdio>
#include <cstring>
using namespace std;
int t,n,h;
char c[20];
int main() {
    scanf("%d",&t);
    while (t--) {
        scanf("%d%d",&n,&h);
        memset(c,0,sizeof(c));
        for (int i = 0; i < n-h; i++) c[i]='0';
        for (int i = n-h; i < n; i++) c[i]='1';
        cout<<c<<endl;
        while (next_permutation(c,c+n)) 
            cout<<c<<endl;
        if (t) printf("\n");
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值