結果
| 問題 | No.3 ビットすごろく |
| コンテスト | |
| ユーザー |
hirokazu1020
|
| 提出日時 | 2015-04-21 18:58:42 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 5,000 ms |
| コード長 | 1,406 bytes |
| コンパイル時間 | 686 ms |
| コンパイル使用メモリ | 86,748 KB |
| 実行使用メモリ | 6,948 KB |
| 最終ジャッジ日時 | 2024-07-01 07:19:48 |
| 合計ジャッジ時間 | 1,618 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 33 |
ソースコード
#include<sstream>
#include<iostream>
#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<cmath>
#include<string>
#include<vector>
#include<set>
#include<map>
#include<queue>
#include<numeric>
#include<functional>
#include<algorithm>
using namespace std;
#define INF (1<<29)
#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define all(v) v.begin(),v.end()
#define uniq(v) v.erase(unique(all(v)),v.end())
#define indexOf(v,x) (find(all(v),x)-v.begin())
#if defined(_MSC_VER)||defined(__SSE4_2__)
#include<nmmintrin.h>
#endif
int popcount32(unsigned int x){
#if defined(_MSC_VER)
return __popcnt(x);
#elif defined(__GNUC__)
return __builtin_popcount(x);
#else
x = x - (( x >> 1 ) & 0x55555555);
x = (x & 0x33333333) + (( x >> 2) & 0x33333333);
x = ( x + ( x >> 4 )) & 0x0F0F0F0F;
x = x + ( x >> 8 );
x = x + ( x >> 16 );
return x & 0x0000003F;
#endif
}
int dp[10001];
int main(){
int n;
cin>>n;
fill(dp,dp+n+1,INF);
priority_queue<pair<int,int> ,vector<pair<int,int> >,greater<pair<int,int> > > pq;
int ans=-1;
pq.push(make_pair(1,1));
while(!pq.empty()){
pair<int,int> p=pq.top();
pq.pop();
if(p.second==n){
ans=p.first;
break;
}
for(int sign=-1;sign<=1;sign+=2){
int dest=p.second+sign*popcount32(p.second);
if(1<=dest&&dest<=n&&p.first+1<dp[dest]){
dp[dest]=p.first+1;
pq.push(make_pair(p.first+1,dest));
}
}
}
cout<<ans<<endl;
return 0;
}
hirokazu1020