結果
問題 | No.3 ビットすごろく |
ユーザー | hirokazu1020 |
提出日時 | 2015-04-21 18:58:42 |
言語 | C++11 (gcc 11.4.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 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 1 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | AC | 2 ms
6,944 KB |
testcase_08 | AC | 1 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,944 KB |
testcase_11 | AC | 2 ms
6,944 KB |
testcase_12 | AC | 2 ms
6,940 KB |
testcase_13 | AC | 2 ms
6,940 KB |
testcase_14 | AC | 2 ms
6,944 KB |
testcase_15 | AC | 2 ms
6,944 KB |
testcase_16 | AC | 2 ms
6,940 KB |
testcase_17 | AC | 2 ms
6,944 KB |
testcase_18 | AC | 2 ms
6,944 KB |
testcase_19 | AC | 2 ms
6,944 KB |
testcase_20 | AC | 1 ms
6,940 KB |
testcase_21 | AC | 2 ms
6,948 KB |
testcase_22 | AC | 2 ms
6,944 KB |
testcase_23 | AC | 2 ms
6,940 KB |
testcase_24 | AC | 2 ms
6,940 KB |
testcase_25 | AC | 2 ms
6,940 KB |
testcase_26 | AC | 2 ms
6,940 KB |
testcase_27 | AC | 2 ms
6,940 KB |
testcase_28 | AC | 2 ms
6,940 KB |
testcase_29 | AC | 2 ms
6,944 KB |
testcase_30 | AC | 1 ms
6,940 KB |
testcase_31 | AC | 2 ms
6,940 KB |
testcase_32 | AC | 2 ms
6,940 KB |
ソースコード
#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; }