//#pragma GCC optimize("O3") //#pragma GCC optimize("Ofast") //#pragma GCC optimize("unroll-loops") //#pragma GCC target("popcnt") #include <bits/stdc++.h> using namespace std; namespace debug { template <class c> struct rge { c b, e; }; template <class c> rge<c> range(c i, c j) { return rge<c>{i, j}; } template <class c> char spk(...); template <class c> auto spk(c* a) -> decltype(cerr << *a, 0); struct stream { ~stream() { cerr << endl; } template <class c> typename enable_if <sizeof spk<c>(0) != 1, stream&>::type operator<<(c i) { cerr << boolalpha << i; return *this; } template <class c> typename enable_if <sizeof spk<c>(0) == 1, stream&>::type operator<<(c i) { return *this << range(begin(i), end(i)); } template <class a, class b> stream& operator<<(pair <a,b> p) { return *this << "(" << p.first << ", " << p.second << ")"; } template <class c> stream& operator<<(rge<c> d) { *this << "["; for (auto it=d.b; it!=d.e; it++) *this << ", " + 2 * (it == d.b) << *it; return *this << "]"; } stream& _dbg(const string& s, int i, int b) { return *this; } template <class c, class ... cs> stream& _dbg(const string& s, int i, int b, c arg, cs ... args) { if (i == (int)(s.size())) return (*this << ": " << arg); b += (s[i] == '(') + (s[i] == '[') + (s[i] == '{') - (s[i] == ')') - (s[i] == ']') - (s[i] == '}'); return (s[i] == ',' && b == 0) ? (*this << ": " << arg << " ")._dbg(s, i + 1, b, args...) : (s[i] == ' ' ? *this : *this << s[i])._dbg(s, i + 1, b, arg, args...); } };} #define dout debug::stream() #define dbg(...) ((dout << ">> ")._dbg(#__VA_ARGS__, 0, 0, __VA_ARGS__)) #define f first #define s second #define sc scanf #define pr printf #define mp make_pair #define pb push_back #define all(x) x.begin(),x.end() #define ss(x) ((int)((x).size())) #define rep(i,a,b) for(int i=(a);i<=(b);i++) #define per(i,a,b) for(int i=(b);i>=(a);i--) #define upgrade cin.tie(0)->sync_with_stdio(0); #define lowb(v,x) (lower_bound(all(v),(x))-v.begin()) #define uppb(v,x) (upper_bound(all(v),(x))-v.begin()) #define erase_duplicates(x) {sort(all(x));x.resize(unique(all(x))-x.begin());} template <class p, class q> pair<p,q> operator-(pair<p,q> a, pair<p,q> b) { return mp(a.f - b.f, a.s - b.s); } template <class p, class q> pair<p,q> operator+(pair<p,q> a, pair<p,q> b) { return mp(a.f + b.f, a.s + b.s); } template <class p, class q> void umin(p &a, const q &b) { if (a > b) a = b; } template <class p, class q> void umax(p &a, const q &b) { if (a < b) a = b; } using lf=long double; using ll=long long; using cll=const ll; using cint=const int; using pll=pair<ll,ll>; using pii=pair<int,int>; // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ // const int inf = 1e9 + 5; const int N = 1000000; int pop[N + 1]; int dp[N + 1]; int nxt[21][N + 1]; int main() { rep(i, 0, N) pop[i] = __builtin_popcount(i); rep(j, 0, 20) rep(i, 0, N) nxt[j][i] = inf; rep(i, 0, N) nxt[pop[i]][i] = i; rep(j, 0, 20) per(i, 0, N - 1) umin(nxt[j][i], nxt[j][i + 1]); rep(i, 0, N) dp[i] = inf; dp[0] = 0; rep(u, 0, N){ rep(b, 1, 20){ int v = u + b; if (v > N) continue; if (dp[u] + 1 > N) continue; int num = nxt[b][dp[u] + 1]; umin(dp[v], num); } } int n; scanf("%d", &n); vector <int> vec; while (n > 0){ vec.pb(dp[n]); n -= pop[dp[n]]; } printf("%d\n", ss(vec)); for (int a : vec) printf("%d ", a); printf("\n"); 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 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 | //#pragma GCC optimize("O3") //#pragma GCC optimize("Ofast") //#pragma GCC optimize("unroll-loops") //#pragma GCC target("popcnt") #include <bits/stdc++.h> using namespace std; namespace debug { template <class c> struct rge { c b, e; }; template <class c> rge<c> range(c i, c j) { return rge<c>{i, j}; } template <class c> char spk(...); template <class c> auto spk(c* a) -> decltype(cerr << *a, 0); struct stream { ~stream() { cerr << endl; } template <class c> typename enable_if <sizeof spk<c>(0) != 1, stream&>::type operator<<(c i) { cerr << boolalpha << i; return *this; } template <class c> typename enable_if <sizeof spk<c>(0) == 1, stream&>::type operator<<(c i) { return *this << range(begin(i), end(i)); } template <class a, class b> stream& operator<<(pair <a,b> p) { return *this << "(" << p.first << ", " << p.second << ")"; } template <class c> stream& operator<<(rge<c> d) { *this << "["; for (auto it=d.b; it!=d.e; it++) *this << ", " + 2 * (it == d.b) << *it; return *this << "]"; } stream& _dbg(const string& s, int i, int b) { return *this; } template <class c, class ... cs> stream& _dbg(const string& s, int i, int b, c arg, cs ... args) { if (i == (int)(s.size())) return (*this << ": " << arg); b += (s[i] == '(') + (s[i] == '[') + (s[i] == '{') - (s[i] == ')') - (s[i] == ']') - (s[i] == '}'); return (s[i] == ',' && b == 0) ? (*this << ": " << arg << " ")._dbg(s, i + 1, b, args...) : (s[i] == ' ' ? *this : *this << s[i])._dbg(s, i + 1, b, arg, args...); } };} #define dout debug::stream() #define dbg(...) ((dout << ">> ")._dbg(#__VA_ARGS__, 0, 0, __VA_ARGS__)) #define f first #define s second #define sc scanf #define pr printf #define mp make_pair #define pb push_back #define all(x) x.begin(),x.end() #define ss(x) ((int)((x).size())) #define rep(i,a,b) for(int i=(a);i<=(b);i++) #define per(i,a,b) for(int i=(b);i>=(a);i--) #define upgrade cin.tie(0)->sync_with_stdio(0); #define lowb(v,x) (lower_bound(all(v),(x))-v.begin()) #define uppb(v,x) (upper_bound(all(v),(x))-v.begin()) #define erase_duplicates(x) {sort(all(x));x.resize(unique(all(x))-x.begin());} template <class p, class q> pair<p,q> operator-(pair<p,q> a, pair<p,q> b) { return mp(a.f - b.f, a.s - b.s); } template <class p, class q> pair<p,q> operator+(pair<p,q> a, pair<p,q> b) { return mp(a.f + b.f, a.s + b.s); } template <class p, class q> void umin(p &a, const q &b) { if (a > b) a = b; } template <class p, class q> void umax(p &a, const q &b) { if (a < b) a = b; } using lf=long double; using ll=long long; using cll=const ll; using cint=const int; using pll=pair<ll,ll>; using pii=pair<int,int>; // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ // const int inf = 1e9 + 5; const int N = 1000000; int pop[N + 1]; int dp[N + 1]; int nxt[21][N + 1]; int main() { rep(i, 0, N) pop[i] = __builtin_popcount(i); rep(j, 0, 20) rep(i, 0, N) nxt[j][i] = inf; rep(i, 0, N) nxt[pop[i]][i] = i; rep(j, 0, 20) per(i, 0, N - 1) umin(nxt[j][i], nxt[j][i + 1]); rep(i, 0, N) dp[i] = inf; dp[0] = 0; rep(u, 0, N){ rep(b, 1, 20){ int v = u + b; if (v > N) continue; if (dp[u] + 1 > N) continue; int num = nxt[b][dp[u] + 1]; umin(dp[v], num); } } int n; scanf("%d", &n); vector <int> vec; while (n > 0){ vec.pb(dp[n]); n -= pop[dp[n]]; } printf("%d\n", ss(vec)); for (int a : vec) printf("%d ", a); printf("\n"); return 0; } |