結果
問題 | No.3 ビットすごろく |
ユーザー | yukiteru |
提出日時 | 2018-02-10 10:18:25 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,017 bytes |
コンパイル時間 | 896 ms |
コンパイル使用メモリ | 87,648 KB |
実行使用メモリ | 818,088 KB |
最終ジャッジ日時 | 2024-10-12 20:24:10 |
合計ジャッジ時間 | 7,127 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | MLE | - |
testcase_03 | -- | - |
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<string> #include<string.h> #include<algorithm> #include<stdio.h> #include<cmath> #include<vector> #include<utility> #include<stack> #include<queue> #include<list> #include<bitset> #include<functional> #define FOR(i, a, b) for(int i=(a);i<=(b);i++) #define RFOR(i, a, b) for(int i=(a);i>=(b);i--) #define MOD 1000000007 #define INF 1000000000 #define PI 3.14159265358979 using namespace std; typedef pair<int, int> P; int main(void) { int n; queue<P>que; cin >> n; que.push(P(1,1)); while (1) { int a, deep; int b; int flag = 0; a = que.front().first; deep = que.front().second; b = a; if (deep > 100) { cout << -1 << endl; break; } que.pop(); while (1) { if (b % 2 == 1) { flag++; } b /= 2; if (b == 0) { break; } } if (a + flag == n) { cout << deep + 1 << endl; break; } if (a - flag > 0) { que.push(P(a - flag, deep + 1)); } if (a + flag < n) { que.push(P(a + flag, deep + 1)); } } return 0; }