Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
99 lines (86 loc) · 1.89 KB

File metadata and controls

99 lines (86 loc) · 1.89 KB
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
/*
ID: xieke.b1
PROG: hamming
LANG: C++
*/
#include <iostream>
#include <fstream>
#include <string>
#include <string.h>
#include <vector>
#include <algorithm>
#include <stack>
#include <map>
using namespace std;
ofstream fout("hamming.out");
ifstream fin ("hamming.in");
const int INF = 999999999;
typedef pair<int, int> pii;
typedef vector<int> vi;
#define all(c) (c).begin(), (c).end()
#define tr(container, it) for(typeof(container.begin()) it = container.begin(); it != container.end(); it++)
int N,B,D;
const int MAXN = 270;
int list[MAXN][MAXN];
int szs[MAXN];
int ans[MAXN], ptr = 0;
bool should_break;
void dfs(int num, int cur){
if(cur==N){
for(int i=0; i<cur; i++){
cout<<ans[i]<<" ";
}cout<<endl;
should_break = true;
exit(0);
}
for(int next = num; next<(1<<B); next++){
bool ok = true;
for(int j=0; j<cur; j++){
if( __builtin_popcount(ans[j]^next)<D){
ok=false;break;
}
}
if(ok){
ans[cur] = next;
dfs(next+1, cur+1);
}
}
}
/*
for(int i=0; i<szs[num]; i++){
int next = list[num][i];
bool ok = true;
for(int j=0; j<cur; j++){
int tmp = next^ans[j];
if( __builtin_popcount(tmp) < D){
ok=false;
break;
}
}
if(ok){
ans[cur] = num;
dfs( next, cur+1);
}
}
*/
void work(){
for(int i=0; i<(1<<B); i++){
for(int j=i+1; j<(1<<B); j++){
int t = i^j;
if( __builtin_popcount(t) >= D){
list[i][ szs[i] ] = j;
//list[j][ szs[j] ] = i;
szs[i]++;
//szs[j]++;
}
}
}
should_break = false;
ans[0] = 0;
dfs(1, 1);
}
int main(){
fin>>N>>B>>D;
work();
return 0;
}
Morty Proxy This is a proxified and sanitized view of the page, visit original site.