結果

問題 No.2486 Don't come next to me
ユーザー karinohito
提出日時 2025-03-31 22:45:31
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 35 ms / 2,000 ms
コード長 435 bytes
コンパイル時間 3,777 ms
コンパイル使用メモリ 273,888 KB
実行使用メモリ 7,324 KB
最終ジャッジ日時 2025-03-31 22:45:38
合計ジャッジ時間 5,808 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h> 
using namespace std;
using ll=long long;

ll f(ll N){
	if(__builtin_popcount(N+1)==1){
		return N-(N/2);
	}
	else{
		return N-((N+1)&(-N-1))+1;
	}
}
void solve(){
	ll N,M;
	cin>>N>>M;
	ll x=0;
	ll an=0;
	for(int i=0;i<M;i++){
		ll B;
		cin>>B;
		an+=f(B-x-1);
		x=B;
	}
	an+=f(N-x);
	cout<<an<<endl;
}

int main(){
	
	cin.tie(nullptr);
	ios::sync_with_stdio(false);

	int T=1;
	// cin>>T;
	while(T--)solve();
}
0