結果
| 問題 |
No.3 ビットすごろく
|
| コンテスト | |
| ユーザー |
aim_cpo
|
| 提出日時 | 2017-05-04 02:29:53 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 1,637 bytes |
| コンパイル時間 | 812 ms |
| コンパイル使用メモリ | 98,032 KB |
| 実行使用メモリ | 6,944 KB |
| 最終ジャッジ日時 | 2024-09-14 07:13:16 |
| 合計ジャッジ時間 | 4,550 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge6 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 18 WA * 15 |
ソースコード
//--------------------------------------------------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;
}
aim_cpo