結果
問題 | No.1664 Unstable f(n) |
ユーザー | inksamurai |
提出日時 | 2021-09-03 21:29:47 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 3 ms / 2,000 ms |
コード長 | 1,069 bytes |
コンパイル時間 | 1,774 ms |
コンパイル使用メモリ | 165,788 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-12-15 10:08:38 |
合計ジャッジ時間 | 2,901 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 38 |
ソースコード
#include <bits/stdc++.h> //eolibraries #define lnf 3999999999999999999 #define inf 999999999 #define fi first #define se second #define pb push_back #define ll long long #define ld long double #define all(c) (c).begin(),(c).end() #define sz(c) (int)(c).size() #define make_unique(a) sort(all(a)),a.erase(unique(all(a)),a.end()); #define rep(i,n) for(int i=0;i<n;i++) #define drep(i,n) for(int i=n-1;i>=0;i--) #define crep(i,x,n) for(int i=x;i<n;i++) #define vec(...) vector<__VA_ARGS__> #define _3sSOzgI ios_base::sync_with_stdio(false),cin.tie(0),cout.tie(0) //eodefine using namespace std; using pii=pair<int,int>; using vi=vec(int); const int mxn=12000; int main(){ _3sSOzgI; ll n; cin>>n; ll ans=n; for(int j=1;j<=60;j++){ ll l=1,r=n,c=-1,up=-1; while(l<=r){ ll m=(l+r)/2; int jj=j; bool pok=1; ll e=1; while(jj>0){ if(e>n or e>n/m) pok=0; e*=m; jj--; } if(pok){ c=m; up=e; l=m+1; }else{ r=m-1; } } if(j==0) cout<<c<<"\n"; if(c!=-1) ans=min(ans,c+j+(n-up)); } cout<<ans<<"\n"; // return 0; }