// muz_pop.cpp : This file contains the 'main' function. Program execution begins and ends there. // #include <iostream> #include <algorithm> #include <stack> #include <vector> #include <queue> #include <utility> using namespace std; typedef pair<int, int> pii; stack<pii> wyn; vector<pii> odp; vector<bool> jest; int Licz_bity(int x) { vector<int> num; int wyn = 0; while (x > 0) { wyn += x % 2; x /= 2; } return wyn; } void Dodaj(int x) { int n = odp.size(); if (x < n - 1) { jest[x] = true; } else { int l = Licz_bity(x); jest.push_back(true); odp.push_back(pii(x, l)); } } pii Szukaj(int roz) { int i = odp.size() - 1; while (jest[i] && roz != odp[i].second) { i--; } pii o = odp[i]; jest[i] = false; return o; } int Przelicz(vector<int> num) { int wyn = 0; int pot = 1; for (int i = num.size() - 1; i >= 0; i--) { wyn += num[i] * pot; pot *= 2; } return wyn; } vector<int> Najmniejszy(vector<int> num) { int n = num.size(); int i = 0; while (i < n && num[i] != 0) { i++; } if (i < n) { i = n - 1; while (num[i] != 0) i--; num[i] = 1; } else { for (int i = 1; i < num.size(); i++) num[i] = 0; num.push_back(0); } return num; } int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); vector<int> num = { 1 }; int n; cin >> n; wyn.push(pii(1, 1)); odp.push_back(pii(0, 0)); odp.push_back(pii(1, 1)); jest.push_back(0); jest.push_back(1); pii zapas = { 0,0 }; int obecnie = 1; for (int i = 2; i <= n; i++) { if (zapas.first) { Dodaj(zapas.first); if (zapas.second > 1) zapas = Szukaj(zapas.second - 1); else zapas = { 0,0 }; } else { int kolejny = obecnie + 1; int roz = Licz_bity(kolejny); Dodaj(kolejny); if (roz > 1) { zapas = Szukaj(roz - 1); } obecnie = kolejny; } } int licz = 0; for (auto i : jest) { if (i) licz++; } cout << licz << "\n"; for (int i = odp.size() - 1; i >= 0; i--) { if (jest[i]) cout << i << " "; } }
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 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 | // muz_pop.cpp : This file contains the 'main' function. Program execution begins and ends there. // #include <iostream> #include <algorithm> #include <stack> #include <vector> #include <queue> #include <utility> using namespace std; typedef pair<int, int> pii; stack<pii> wyn; vector<pii> odp; vector<bool> jest; int Licz_bity(int x) { vector<int> num; int wyn = 0; while (x > 0) { wyn += x % 2; x /= 2; } return wyn; } void Dodaj(int x) { int n = odp.size(); if (x < n - 1) { jest[x] = true; } else { int l = Licz_bity(x); jest.push_back(true); odp.push_back(pii(x, l)); } } pii Szukaj(int roz) { int i = odp.size() - 1; while (jest[i] && roz != odp[i].second) { i--; } pii o = odp[i]; jest[i] = false; return o; } int Przelicz(vector<int> num) { int wyn = 0; int pot = 1; for (int i = num.size() - 1; i >= 0; i--) { wyn += num[i] * pot; pot *= 2; } return wyn; } vector<int> Najmniejszy(vector<int> num) { int n = num.size(); int i = 0; while (i < n && num[i] != 0) { i++; } if (i < n) { i = n - 1; while (num[i] != 0) i--; num[i] = 1; } else { for (int i = 1; i < num.size(); i++) num[i] = 0; num.push_back(0); } return num; } int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); vector<int> num = { 1 }; int n; cin >> n; wyn.push(pii(1, 1)); odp.push_back(pii(0, 0)); odp.push_back(pii(1, 1)); jest.push_back(0); jest.push_back(1); pii zapas = { 0,0 }; int obecnie = 1; for (int i = 2; i <= n; i++) { if (zapas.first) { Dodaj(zapas.first); if (zapas.second > 1) zapas = Szukaj(zapas.second - 1); else zapas = { 0,0 }; } else { int kolejny = obecnie + 1; int roz = Licz_bity(kolejny); Dodaj(kolejny); if (roz > 1) { zapas = Szukaj(roz - 1); } obecnie = kolejny; } } int licz = 0; for (auto i : jest) { if (i) licz++; } cout << licz << "\n"; for (int i = odp.size() - 1; i >= 0; i--) { if (jest[i]) cout << i << " "; } } |