結果

問題 No.1286 Stone Skipping
ユーザー otera
提出日時 2020-11-18 10:46:52
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 1,185 bytes
コンパイル時間 2,101 ms
コンパイル使用メモリ 191,436 KB
最終ジャッジ日時 2025-01-16 01:31:08
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 26
権限があれば一括ダウンロードができます

ソースコード

diff #

/**
 *    author:  otera    
**/
#include<bits/stdc++.h>
using namespace std;

#define int long long
typedef long long ll;
typedef long double ld;
#define rep(i, n) for(int i = 0; i < n; ++ i)
#define per(i,n) for(int i=n-1;i>=0;i--)
typedef pair<int, int> P;
typedef pair<ll, ll> LP;
#define fr first
#define sc second
#define all(c) c.begin(),c.end()
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; }

void solve() {
    auto f = [&](ll x, int k) {
        ll ret = x;
        rep(i, k) {
            x >>= 1;
            ret += x;
        }
        return ret;
    };
    ll d; cin >> d;
    ll ans = d;
    for(int k = 1; k <= 62; ++ k) {
        ll ok = d, ng = 0;
        while(ok - ng > 1) {
            ll mid = (ok + ng) / 2;
            if(f(mid, k) >= d) ok = mid;
            else ng = mid;
        }
        if(f(ok, k) == d) chmin(ans, ok);
    }
    cout << ans << "\n";
}

signed main() {
	ios::sync_with_stdio(false);
	cin.tie(0);
	//cout << fixed << setprecision(20);
	//int t; cin >> t; rep(i, t)solve();
	solve();
    return 0;
}
0