結果

問題 No.1286 Stone Skipping
ユーザー abc3
提出日時 2020-11-14 02:42:16
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 811 bytes
コンパイル時間 2,020 ms
コンパイル使用メモリ 193,916 KB
最終ジャッジ日時 2025-01-16 00:26:21
ジャッジサーバーID
(参考情報)
judge4 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 26
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#include <math.h>
#include <iomanip>
#include <cstdint>
#include <string>
#include <sstream>
template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }
#define rep(i,n) for (int i = 0; i < (n); ++i)
typedef long long ll;
using P = pair<int,int>;
const int INF=1001001001;
const int mod =1e9+7;
ll f(ll x,ll k){
  ll sum=0;
  while(k--){
    sum+=x;
    x/=2;
  }
  return sum;
}

int main() {
  ll d;cin>>d;
  ll ans=1e18+5;
  for(int k=0;k<=log2(d)+1;k++){
    ll l=0,r=d;
    while(r-l>1){
      ll mid=(l+r)/2;
      if(f(mid,k)>=d){r=mid;}
      else{l=mid;}
    }
    if(f(r,k)==d){chmin(ans,r);}
  }
  cout<<ans<<endl;
  return 0;
}
0