結果

問題 No.2486 Don't come next to me
ユーザー warabi0906warabi0906
提出日時 2023-12-21 10:40:05
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 384 ms / 2,000 ms
コード長 414 bytes
コンパイル時間 1,855 ms
コンパイル使用メモリ 176,636 KB
実行使用メモリ 17,280 KB
最終ジャッジ日時 2024-09-27 10:54:45
合計ジャッジ時間 7,480 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 316 ms
15,104 KB
testcase_01 AC 278 ms
14,080 KB
testcase_02 AC 67 ms
6,944 KB
testcase_03 AC 184 ms
10,880 KB
testcase_04 AC 265 ms
13,440 KB
testcase_05 AC 184 ms
10,880 KB
testcase_06 AC 217 ms
11,776 KB
testcase_07 AC 31 ms
6,940 KB
testcase_08 AC 71 ms
6,944 KB
testcase_09 AC 281 ms
14,208 KB
testcase_10 AC 190 ms
11,008 KB
testcase_11 AC 105 ms
7,936 KB
testcase_12 AC 45 ms
6,940 KB
testcase_13 AC 384 ms
17,280 KB
testcase_14 AC 81 ms
7,040 KB
testcase_15 AC 190 ms
11,008 KB
testcase_16 AC 34 ms
6,940 KB
testcase_17 AC 69 ms
6,940 KB
testcase_18 AC 61 ms
6,940 KB
testcase_19 AC 75 ms
6,940 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
int main(){
	long long N,M;
	cin>>N>>M;
	map<long long,long long> mp;
	function<long long(long long)> f=[&](long long L){
		if(mp.count(L))return mp[L];
		else if(L<3 or L%2==0)return L;
		else return mp[L]=f(L/2)+f(L-L/2-1);
	};
	long long ans=0;
	vector<long long> A(M);
	for(auto &&a:A)cin>>a;
	for(int i=0;i<M-1;i++){
		ans+=f(A[i+1]-A[i]-1);
	}
	cout<<ans<<endl;
}
0