結果

問題 No.3 ビットすごろく
ユーザー newlife171128newlife171128
提出日時 2017-12-21 22:05:28
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 850 bytes
コンパイル時間 557 ms
コンパイル使用メモリ 64,580 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-10 02:33:05
合計ジャッジ時間 25,309 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 3 ms
5,376 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 5 ms
5,376 KB
testcase_08 AC 32 ms
5,376 KB
testcase_09 AC 445 ms
5,376 KB
testcase_10 AC 1,120 ms
5,376 KB
testcase_11 AC 266 ms
5,376 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 1,471 ms
5,376 KB
testcase_17 AC 2,333 ms
5,376 KB
testcase_18 AC 5 ms
5,376 KB
testcase_19 AC 2,923 ms
5,376 KB
testcase_20 AC 3 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 2,983 ms
5,376 KB
testcase_25 AC 2,606 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 7 ms
5,376 KB
testcase_28 AC 1,415 ms
5,376 KB
testcase_29 AC 288 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 175 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <string>
#include <sstream>
#include <cmath>

using namespace std;

int nums[10001] = {10000};
int n = 0;
void dfs(int x, int times) {
	if (x > n || x < 1 || times+1>nums[x]) {
		return;
	}

/*
	if (nums[x] != 0 && ++times < nums[x]) {
		nums[x] = ++times;
	}
	if (nums[x] == 0) {
		nums[x] = ++times;
	}
*/

	nums[x] = min(nums[x],++times);
/*


	 cout << "nums:" << x << " " << times << endl;
*/

/*	 cout<<nums[x]<<endl;*/


	int count = 0;
	for (int k = 0; k <= /* ceil(sqrt(i))*/log2(x); k++) {
		if ((x >> k) % 2 == 1) {
			count++;
		}
	}
	dfs(x + count, times);

	dfs(x - count, times);

}
int main() {

	cin >> n;

	for(int i=1; i<=n; i++){
		nums[i] =10000;
	}

	dfs(1, 0);

	if (nums[n] != 0) {
		cout << nums[n] << endl;
	} else {
		cout << -1 << endl;
	}
	return 0;
}

0