結果

問題 No.3 ビットすごろく
ユーザー togari_takamototogari_takamoto
提出日時 2015-12-13 01:29:18
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 1,023 bytes
コンパイル時間 794 ms
コンパイル使用メモリ 95,684 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-01 07:38:33
合計ジャッジ時間 1,800 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 33
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <array>
#include <algorithm>
#include <string>
#include <map>
#include <queue>
#include <iomanip>
#include <numeric>
#include <memory>
#include <limits.h>
#include <set>
#include <cassert>
#include <cmath>
#include <bitset>
using namespace std;

typedef long long ll;

#define REP(i,n) for(ll i=0; i<(n); ++i)
#define TEN(x) ((ll)1e##x)
#define ALL(v) (v).begin(), (v).end()

int main() {
	ll n;
	cin >> n;

	vector<bool> visited(n+1, false);
	queue<pair<ll, bitset<14>>> que;
	que.push({1, 1});
	while (!que.empty()) {
		ll d; bitset<14> current;
		tie(d,current) = que.front(); que.pop();
		if (visited[current.to_ulong()]) continue;
		visited[current.to_ulong()] = true;
		
		if (current.to_ulong() == n) {
			cout << d << endl;
			return 0;
		}
		
		ll c = current.count();
		if ((ll)current.to_ulong() - c >= 1) que.push({d+1, (ll)current.to_ulong() - c});
		if (current.to_ulong() + c <= n) que.push({d+1, current.to_ulong() + c});
	}
	
	cout << -1 << endl;
	return 0;
}
0