結果
問題 | No.1869 Doubling? |
ユーザー |
|
提出日時 | 2022-03-11 21:37:51 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 31 ms / 2,000 ms |
コード長 | 956 bytes |
コンパイル時間 | 2,207 ms |
コンパイル使用メモリ | 197,684 KB |
最終ジャッジ日時 | 2025-01-28 08:22:27 |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 43 |
ソースコード
#include<bits/stdc++.h>using namespace std;//#include<atcoder/all>//using namespace atcoder;using ll = long long int;using ull = unsigned long long int;using ld = long double;constexpr ll MAX = 2000000000000000000;constexpr ld PI = 3.14159265358979;constexpr ll MOD = 998244353;//2024948111;ld dotorad(ld K){return PI * K / 180.0;}ld radtodo(ld K){return K * 180.0 / PI;}mt19937 mt;void randinit(){srand((unsigned)time(NULL));mt = mt19937(rand());}int main(){ll N,M;cin >> N >> M;if(N < 62 && M >= (1 << (N - 1))){cout << (1 << (N)) - 1 << endl;return 0;}ll ans = 0;vector<ll> A;while(M != 1){A.emplace_back(M);if(M & 1) M = (M + 1) / 2;else M /= 2;}A.emplace_back(1);reverse(A.begin(),A.end());ll a = (ll)A.size();for(ll i = 0;i < min(a,N);i++) ans += A[i];if(N <= a) cout << ans << endl;else cout << ans + (N - a) << endl;}