#include<bits/stdc++.h>
using namespace std;
int IloscBitow(int x)
{
int wynik=0;
while(x>0)
{
if(x%2==1){wynik++;}
x=x>>1;
}
return wynik;
}
int main()
{ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0);
int n,h=0;
cin>>n;
while(n>0)
{
h++;
n-=IloscBitow(h);
}
n=n*(-1);
vector<int>odp;
for(int i=h;i>=1;i--)
{
int u=IloscBitow(i);
if(u<=n)
{
n-=u;
}
else
{
odp.push_back(i);
}
}
cout<<odp.size()<<endl;
for(int i=0;i<odp.size();i++)
{
cout<<odp[i]<<" ";
}
return 0;
}
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 | #include<bits/stdc++.h> using namespace std; int IloscBitow(int x) { int wynik=0; while(x>0) { if(x%2==1){wynik++;} x=x>>1; } return wynik; } int main() {ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0); int n,h=0; cin>>n; while(n>0) { h++; n-=IloscBitow(h); } n=n*(-1); vector<int>odp; for(int i=h;i>=1;i--) { int u=IloscBitow(i); if(u<=n) { n-=u; } else { odp.push_back(i); } } cout<<odp.size()<<endl; for(int i=0;i<odp.size();i++) { cout<<odp[i]<<" "; } return 0; } |
English