結果
問題 | No.3 ビットすごろく |
ユーザー | d2verb |
提出日時 | 2015-05-05 10:40:16 |
言語 | C++11 (gcc 11.4.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,293 bytes |
コンパイル時間 | 661 ms |
コンパイル使用メモリ | 90,112 KB |
実行使用メモリ | 814,200 KB |
最終ジャッジ日時 | 2024-07-05 19:07:30 |
合計ジャッジ時間 | 4,413 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | MLE | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
ソースコード
#include <iostream> #include <sstream> #include <string> #include <vector> #include <list> #include <stack> #include <queue> #include <deque> #include <set> #include <map> #include <algorithm> #include <functional> #include <limits> #include <cstdio> #include <cstdlib> #include <cmath> #include <climits> #include <complex> using namespace std; #define INF (INT_MAX/3) #define PI (2*acos(0.0)) #define EPS (1e-8) typedef long long ll; typedef unsigned long long ull; int N; int cntBit(int b){ int cnt = 0; for(int i = 0; i < 14; i++) cnt += (b & (i << 1)); return cnt; } int solve(){ int minDis = INF; pair<int, int> s(1, 0); queue<pair<int, int> > que; que.push(s); while(!que.empty()){ pair<int, int> n = que.front(); que.pop(); if(n.first > N || n.first < 1) continue; if(n.first == N) { minDis = min(minDis, n.second); break;} int b = __builtin_popcount(n.first); que.push(pair<int, int>(n.first + b, n.second + 1)); if(n.first - b != 1) que.push(pair<int, int>(n.first - b, n.second + 1)); } return minDis; } int main(){ ios_base::sync_with_stdio(0); cin >> N; int minDis = solve(); if(minDis == INF) cout << -1 << endl; else cout << minDis + 1 << endl; return 0; }