結果

問題 No.3 ビットすごろく
ユーザー めうめう🎒めうめう🎒
提出日時 2016-01-22 18:59:22
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 170 ms / 5,000 ms
コード長 980 bytes
コンパイル時間 665 ms
コンパイル使用メモリ 84,228 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-01 07:42:08
合計ジャッジ時間 3,763 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
6,812 KB
testcase_01 AC 31 ms
6,940 KB
testcase_02 AC 30 ms
6,940 KB
testcase_03 AC 31 ms
6,944 KB
testcase_04 AC 31 ms
6,944 KB
testcase_05 AC 34 ms
6,940 KB
testcase_06 AC 31 ms
6,944 KB
testcase_07 AC 31 ms
6,940 KB
testcase_08 AC 32 ms
6,944 KB
testcase_09 AC 51 ms
6,940 KB
testcase_10 AC 86 ms
6,944 KB
testcase_11 AC 43 ms
6,944 KB
testcase_12 AC 34 ms
6,944 KB
testcase_13 AC 31 ms
6,940 KB
testcase_14 AC 75 ms
6,944 KB
testcase_15 AC 156 ms
6,940 KB
testcase_16 AC 107 ms
6,940 KB
testcase_17 AC 144 ms
6,944 KB
testcase_18 AC 31 ms
6,940 KB
testcase_19 AC 169 ms
6,940 KB
testcase_20 AC 31 ms
6,940 KB
testcase_21 AC 30 ms
6,940 KB
testcase_22 AC 79 ms
6,944 KB
testcase_23 AC 168 ms
6,940 KB
testcase_24 AC 170 ms
6,940 KB
testcase_25 AC 153 ms
6,944 KB
testcase_26 AC 31 ms
6,944 KB
testcase_27 AC 31 ms
6,944 KB
testcase_28 AC 101 ms
6,944 KB
testcase_29 AC 43 ms
6,940 KB
testcase_30 AC 30 ms
6,940 KB
testcase_31 AC 30 ms
6,944 KB
testcase_32 AC 39 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <sstream>
#include <math.h>
#include <stack>
#include <set>
#include <algorithm>
#include <string>
#include <queue>
#include <stack>
#include <map>
#include <cstdio>
#include <vector>
#include <bitset>
using namespace std;

#define INF (1 << 30)
#define INFLL (1LL << 60)

int ido[10010] = {},n;

int bit_how(int n){
	stringstream ss;
	ss << bitset<32>(n);
	int ans = 0;
	for(int i = 0;i < ss.str().size();i++){
		if(ss.str()[i] == '1') ans++;
	}
	return ans;
}

int memo[10010] = {};

int saiki(int now,int how){
	if(memo[now] < how) return INF;
	if(now > n) return INF;
	if(now == n) return how;
	int a,b;
	memo[now] = how;
	a = saiki(now + ido[now],how+1);
	b = saiki(now - ido[now],how+1);
	return min(a,b);
}

int main() {
	int how;
	for(int i = 0;i < 10010;i++) memo[i] = INF;
	for(int i = 0;i < 10010;i++){
		ido[i] = bit_how(i);
	}
	cin >> n;
	int ans = saiki(1,1);
	if(ans == INF) cout << "-1" << endl;
	else cout << ans << endl;
	return 0;
}
0