結果
問題 | No.3 ビットすごろく |
ユーザー | naimonon77 |
提出日時 | 2016-02-29 05:26:05 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,231 bytes |
コンパイル時間 | 1,319 ms |
コンパイル使用メモリ | 163,412 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-24 12:40:56 |
合計ジャッジ時間 | 3,946 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | WA | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | RE | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | WA | - |
testcase_26 | RE | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
ソースコード
#define _CRT_SECURE_NO_WARNINGS #define _USE_MATH_DEFINES #ifdef __unix__ #include <bits/stdc++.h> #else #include "bits\stdc++.h" #endif #include <vector> #include <set> #include <string> #include <queue> #include <list> #define REP(i,a,b) for(i=a;i<b;i++) #define rep(i,n) REP(i,0,n) using namespace std; #define VI vector<int> #define ll long long #define ull unsigned ll typedef long double ld; #define SQR(X) ((X)*(X)) #define MAX 10005 int pop_cnt(int x) { int cnt = 0; while(x) { if(x % 2) cnt++; x /= 2; } return cnt; } struct Node{ int x,cnt; }; int main() { int N; cin >> N; int ans = -1; queue<Node> q; bool visited[MAX] = {0}; Node tmp = {1,0}; q.push(tmp); visited[1] = true; while( q.size() ) { Node now = q.front(); q.pop(); int plus = pop_cnt(now.x); int rear = now.x + plus; int ex = now.x - plus; if(not visited[rear] and rear > 0) { Node node_r = {rear,now.cnt+1}; visited[rear] = true; q.push(node_r); } if( not visited[ex] && ex < N) { Node node_ex = {ex,now.cnt+1}; visited[ex] = true; q.push(node_ex); } if(rear == N) { ans = now.cnt+1; break; } } cout << ans << endl; return 0; }