結果
| 問題 |
No.3 ビットすごろく
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2023-04-10 20:43:33 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 3 ms / 5,000 ms |
| コード長 | 976 bytes |
| コンパイル時間 | 625 ms |
| コンパイル使用メモリ | 74,400 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-10-06 07:14:34 |
| 合計ジャッジ時間 | 1,587 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 33 |
ソースコード
#include<iostream>
#include<cstring>
#include<queue>
using namespace std;
typedef long long ll;
const int N = 1e4 + 10;
bool v[N];
int m[N];
int n;
int fun(int x)
{
int ans = 0;
while(x)
{
if(x & 1) ans ++ ;
x >>= 1;
}
return ans;
}
void bfs()
{
queue<int> q;
q.push(1);
memset(m, 0x3f, sizeof m);
m[1] = 1;
while(q.size())
{
int t = q.front();
q.pop();
if(v[t]) continue;
v[t] = true;
int d = fun(t);
if(t + d >= 1 && t + d <= n && !v[t + d])
{
m[t + d] = min(m[t] + 1, m[t + d]);
q.push(t + d);
}
if(t - d >= 1 && t - d <= n && !v[t - d])
{
m[t - d] = min(m[t] + 1, m[t - d]);
q.push(t - d);
}
}
if(v[n]) cout << m[n];
else cout << -1;
}
int main()
{
cin.tie(0), cout.tie(0), ios::sync_with_stdio(false);
cin >> n;
bfs();
return 0;
}