結果

問題 No.3 ビットすごろく
ユーザー shisyamokongari
提出日時 2016-08-21 00:58:03
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 660 bytes
コンパイル時間 528 ms
コンパイル使用メモリ 64,076 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-01 08:02:35
合計ジャッジ時間 1,508 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 33
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<queue>

using namespace std;

#define NMAX 10000

int bitcount(int n){
	int c=0;
	while(n!=0){
		if(n%2==1) c++;
		n=n>>1;
	}
	return c;
}

int main(){

	int N;
	int ansmap[NMAX+1];
	queue<int> qi;

	cin>>N;

	for(int i=1;i<=N;i++) ansmap[i]=-1;
	ansmap[1]=1;

	qi.push(1);

	while(!qi.empty()){
		int no=qi.front();
		int ansn=ansmap[no];
		int m=bitcount(no);
		qi.pop();
		if(no-m>=1){
			if(ansmap[no-m]==-1||ansn+1<ansmap[no-m]){
				ansmap[no-m]=ansn+1;
				qi.push(no-m);
			}
		}
		if(no+m<=N){
			if(ansmap[no+m]==-1||ansn+1<ansmap[no+m]){
				ansmap[no+m]=ansn+1;
				qi.push(no+m);
			}
		}
	}
	cout<<ansmap[N]<<endl;
}

0