-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path2205-gray-code.cpp
46 lines (37 loc) · 922 Bytes
/
2205-gray-code.cpp
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
#include <bits/stdc++.h>
using namespace std;
#define fastio ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL);
#define ll long long
#define vi vector<int>
#define vl vector<ll>
#define pii pair<int, int>
#define pll pair<ll, ll>
#define pb push_back
#define mp make_pair
#define fi first
#define se second
const int MOD = 1e9 + 7;
const int INF = 1e9;
const ll LLINF = 1e18;
void solve() {
int n;
cin >> n;
// Calculate the total number of Gray codes.
ll totalCodes = 1LL << n;
// Generate and print the Gray codes.
for (ll i = 0; i < totalCodes; i++) {
ll grayCode = i ^ (i >> 1);
bitset<20> binary(grayCode);
string grayString = binary.to_string().substr(20 - n);
cout << grayString << "\n";
}
}
int main() {
fastio
int tc = 1; // Number of test cases
// cin >> tc;
while (tc--) {
solve();
}
return 0;
}