結果

問題 No.3 ビットすごろく
ユーザー aim_cpoaim_cpo
提出日時 2017-05-04 02:29:53
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,637 bytes
コンパイル時間 851 ms
コンパイル使用メモリ 95,716 KB
実行使用メモリ 6,332 KB
最終ジャッジ日時 2023-10-12 08:06:26
合計ジャッジ時間 4,891 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,348 KB
testcase_01 AC 1 ms
4,348 KB
testcase_02 AC 2 ms
4,348 KB
testcase_03 AC 2 ms
4,348 KB
testcase_04 AC 2 ms
4,348 KB
testcase_05 AC 10 ms
4,352 KB
testcase_06 AC 2 ms
4,352 KB
testcase_07 AC 2 ms
4,348 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 9 ms
4,352 KB
testcase_13 AC 2 ms
4,352 KB
testcase_14 AC 110 ms
4,352 KB
testcase_15 AC 290 ms
5,120 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 2 ms
4,348 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 2 ms
4,352 KB
testcase_22 AC 114 ms
4,348 KB
testcase_23 AC 331 ms
5,988 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 1 ms
4,352 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 1 ms
4,348 KB
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

//--------------------------------------------------template----------------------------------------//
//c
#include <stdio.h>
#include <time.h>
#include <math.h>
//c++
#include <cstdio>
#include <iostream>
#include <algorithm>
#include <functional>
#include <cstdlib>
#include <sstream>
#include <string>
#include <set>
#include <map>
#include <stack>
#include <queue>
#include <deque>
#include <vector>
#include <complex>
#include <cmath>
//c++11
#include <tuple>
#define all(c) ((c).begin(),(c).end())
#define rall(c) (c).rbegin(),(c).rend()
//#define sort(v,n) sort(v,v+n)
//#define vsort(v) sort(v.begin(),v.end())
//#define vvsort(v) sort(v.begin(),v.end(),greater<int>())
#define ll long long
#define pb(a) push_back(a)
#define fi first
#define se second
#define inf 999999999
using namespace std;
const ll MOD = 1e9 + 7;
const double PI = acos(-1.0);
//---------------------------------------------------------------------------------------------//
inline int contbit(int a) {
	int res = 0;
	while (a) {
		if (a & 1)res++;
		a >>= 1;
	}
	return res;
}
int n;
int ans = inf;
bool b[10001];
inline void bfs() {
	queue<pair<int,int>> q;
	q.push(pair<int,int>(1,1));
	while (!q.empty()) {
		int now = q.front().first;
		int nowcont = q.front().second;
		q.pop();
		b[now] = 1;
		if (now == n) {
			ans = min(ans, nowcont);
			break;
		}
		int m = contbit(now);
		if (now + m <= n && b[now+m]==0 )q.push(pair<int, int>(now + m, ++nowcont));
		if (now - m > 0 && b[now-m]==0)q.push(pair<int, int>(now - m, ++nowcont));
	}
}

int main() {
	cin >> n;
	bfs();
	if (ans == inf) {
		cout << -1 << endl;
		return 0;
	}
	cout << ans << endl;
}
0