結果

問題 No.3 ビットすごろく
ユーザー OnjuOnju
提出日時 2015-01-31 05:42:42
言語 C++11
(gcc 11.4.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 714 bytes
コンパイル時間 420 ms
コンパイル使用メモリ 61,912 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-23 04:31:44
合計ジャッジ時間 2,555 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 7 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 30 ms
5,376 KB
testcase_06 AC 8 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 19 ms
5,376 KB
testcase_09 AC 50 ms
5,376 KB
testcase_10 AC 73 ms
5,376 KB
testcase_11 AC 41 ms
5,376 KB
testcase_12 AC 28 ms
5,376 KB
testcase_13 AC 6 ms
5,376 KB
testcase_14 AC 68 ms
5,376 KB
testcase_15 AC 106 ms
5,376 KB
testcase_16 AC 93 ms
5,376 KB
testcase_17 AC 104 ms
5,376 KB
testcase_18 AC 4 ms
5,376 KB
testcase_19 AC 111 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 69 ms
5,376 KB
testcase_23 AC 111 ms
5,376 KB
testcase_24 AC 110 ms
5,376 KB
testcase_25 AC 111 ms
5,376 KB
testcase_26 WA -
testcase_27 AC 7 ms
5,376 KB
testcase_28 AC 89 ms
5,376 KB
testcase_29 AC 43 ms
5,376 KB
testcase_30 AC 1 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 36 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//No.3 ビットすごろく

#include <iostream>
#include <unordered_set>
#include <limits.h>
#include <bitset>

#define NMAX 10000

using namespace std;

int C[NMAX];
int N;

int cal(int val, int cost)
{
	++cost;

	bitset<32> bs(val);
	int count = bs.count();

	int next_l = val - count;
	int next_r = val + count;

	if (next_l > 0)
		if (cost < C[next_l - 1])
		{
			C[next_l - 1] = cost;
			cal(next_l, cost);
		}
	if (next_r <= N)
		if (cost < C[next_r - 1])
		{
			C[next_r - 1] = cost;
			cal(next_r, cost);
		}

	return val;
}

int solve()
{
	cal(1, 1);

	return C[N - 1] < INT_MAX ? C[N - 1] : -1;
}

int main()
{
	cin >> N;

	for (int i = 0; i < N; ++i)
		C[i] = INT_MAX;

	cout << solve();

	return 0;
}
0