#define _CRT_SECURE_NO_WARNINGS //#define _GLIBCXX_DEBUG #include using namespace std; typedef long long ll; typedef vector vi; typedef vector vvi; typedef pair pii; #define all(c) (c).begin(), (c).end() #define loop(i,a,b) for(ll i=a; i istream& operator>>(istream& is, vector& v); template ostream& operator<<(ostream& os, vector const& v); template typename enable_if<(n>=sizeof...(T))>::type _ot(ostream&, const tuple&){} template typename enable_if<(n< sizeof...(T))>::type _ot(ostream& os, const tuple& t){ os << (n==0?"":" ") << get(t); _ot(os, t); } template ostream& operator<<(ostream& os, const tuple& t){ _ot<0>(os, t); return os; } template typename enable_if<(n>=sizeof...(T))>::type _it(istream&, tuple&){} template typename enable_if<(n< sizeof...(T))>::type _it(istream& is, tuple& t){ is >> get(t); _it(is, t); } template istream& operator>>(istream& is, tuple& t){ _it<0>(is, t); return is; } template istream& operator>>(istream& is, vector& v){ rep(i,v.size()) is >> v[i]; return is; } template ostream& operator<<(ostream& os, vector const& v){ rep(i,v.size()) os << v[i] << (i+1==(int)v.size()?"":" "); return os; } #ifdef DEBUG #define dump(...) (cerr<<#__VA_ARGS__<<" = "< inline size_t popcount(T x){ static_assert(sizeof(x)*8 <= 128, "popcount : must be 128 bits or shrter."); static_assert(is_integral::value, "popcount : must be integer."); static const int mask = 65535; static size_t dp[66000]; if(dp[mask] != 16) for(int i = 0; i <= mask; i++) dp[i] = (i&1) + dp[i>>1]; if(false){ } else if(sizeof(T)*8 <= 16){ return dp[x]; } else if(sizeof(T)*8 <= 32){ return dp[(uint32_t)x] + dp[(uint32_t)x>>16]; } else if(sizeof(T)*8 <= 64){ return dp[(uint64_t)x&mask] + dp[((uint64_t)x>>16)&mask] + dp[((uint64_t)x>>32)&mask] + dp[((uint64_t)x>>48)&mask]; } else { return dp[((__uint128_t)x)&mask] + dp[((__uint128_t)x>>16)&mask] + dp[((__uint128_t)x>>32)&mask] + dp[((__uint128_t)x>>48)&mask] + dp[((__uint128_t)x>>64)&mask] + dp[((__uint128_t)x>>80)&mask] + dp[((__uint128_t)x>>96)&mask] + dp[((__uint128_t)x>>112)&mask]; } } int main(){ int N; while(cin>>N){ vi d(N+1,100000); d[1] = 1; queue q; q.push(1); while(q.size()){ int t = q.front(); q.pop(); dump(t); if(t==N){ cout << d[t] << endl; goto END; } int k = popcount(t); if(t-k > 0 && d[t-k] > d[t]+1){ d[t-k] = d[t]+1; q.push(t-k); } if(t+k <= N && d[t+k] > d[t]+1){ d[t+k] = d[t]+1; q.push(t+k); } } cout << -1 << endl; END:; } }