#pragma region Macros // #pragma GCC target("avx2") #pragma GCC optimize("O3") #include #include #include #include using namespace std; using namespace __gnu_pbds; template using ordered_set = tree, rb_tree_tag, tree_order_statistics_node_update>; struct __INIT{__INIT(){cin.tie(0);ios::sync_with_stdio(false);cout<= 0; i--) #define ALL(v) v.begin(), v.end() #define endl "\n" #define fi first #define se second #define popcount(bit) __builtin_popcount(bit) #define popcountll(bit) __builtin_popcountll(bit) #define pb push_back #define eb emplace_back using namespace atcoder; using P = pair; using PL = pair; using Graph = vector>; typedef long long ll; template inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } const int dx[4] = {1, 0, -1, 0}; const int dy[4] = {0, 1, 0, -1}; const int fx[8] = {0, 1, 1, 1, 0, -1, -1, -1}; const int fy[8] = {1, 1, 0, -1, -1, -1, 0, 1}; template const auto INF = numeric_limits::max()/2; ll mypow(ll x, ll n){ if(n == 0) return 1; if(n % 2 == 0) return mypow(x * x, n / 2); else return x * mypow(x, n - 1); } int main() { ll n; cin >> n; ll d = sqrtl(n); ll res = n - d * d; ll ans = min(n, d + 2 + res); for (ll i = 2; i * i * i <= n; i++){ ll num = 3; ll tmp = i * i * i; while(tmp <= n / i){ num++; tmp *= i; } chmin(ans, num + i + n - tmp); } cout << ans << endl; }