結果

問題 No.2486 Don't come next to me
ユーザー umezoumezo
提出日時 2023-09-29 22:25:10
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 295 ms / 2,000 ms
コード長 574 bytes
コンパイル時間 2,584 ms
コンパイル使用メモリ 213,376 KB
実行使用メモリ 31,360 KB
最終ジャッジ日時 2024-07-22 16:25:45
合計ジャッジ時間 5,491 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 226 ms
27,008 KB
testcase_01 AC 203 ms
24,832 KB
testcase_02 AC 46 ms
9,344 KB
testcase_03 AC 130 ms
18,560 KB
testcase_04 AC 200 ms
23,936 KB
testcase_05 AC 137 ms
18,560 KB
testcase_06 AC 149 ms
20,352 KB
testcase_07 AC 20 ms
6,940 KB
testcase_08 AC 50 ms
9,984 KB
testcase_09 AC 215 ms
25,344 KB
testcase_10 AC 133 ms
18,944 KB
testcase_11 AC 75 ms
12,672 KB
testcase_12 AC 32 ms
7,680 KB
testcase_13 AC 295 ms
31,360 KB
testcase_14 AC 57 ms
10,752 KB
testcase_15 AC 134 ms
18,816 KB
testcase_16 AC 23 ms
6,944 KB
testcase_17 AC 50 ms
9,728 KB
testcase_18 AC 42 ms
9,088 KB
testcase_19 AC 51 ms
10,240 KB
testcase_20 AC 2 ms
6,944 KB
testcase_21 AC 1 ms
6,944 KB
testcase_22 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define ALL(v) v.begin(),v.end()
typedef long long ll;
 
#include<bits/stdc++.h>
using namespace std;
 
int main(){
  ios::sync_with_stdio(false);
  std::cin.tie(nullptr);
  
  ll n,m;
  cin>>n>>m;
  vector<ll> A(m);
  rep(i,m) cin>>A[i];
  vector<ll> B(m-1);
  rep(i,m-1) B[i]=A[i+1]-A[i]-1;
  
  map<ll,ll> M;
  M[1]=1;
  auto f=[&](auto f,ll x)->ll{
    if(M.count(x)) return M[x];
    if(x%2==0) return M[x]=x;
    return M[x]=2*f(f,x/2);
  };
  
  ll ans=0;
  rep(i,m-1) ans+=f(f,B[i]);
  cout<<ans<<endl;
    
  return 0;
}
0