結果
| 問題 |
No.3 ビットすごろく
|
| コンテスト | |
| ユーザー |
aim_cpo
|
| 提出日時 | 2017-05-04 01:53:07 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 1,523 bytes |
| コンパイル時間 | 878 ms |
| コンパイル使用メモリ | 91,696 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-09-14 07:13:11 |
| 合計ジャッジ時間 | 2,086 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 18 WA * 15 |
ソースコード
//--------------------------------------------------template----------------------------------------//
//c
#include <stdio.h>
#include <time.h>
#include <math.h>
//c++
#include <cstdio>
#include <iostream>
#include <algorithm>
#include <functional>
#include <cstdlib>
#include <sstream>
#include <string>
#include <set>
#include <map>
#include <stack>
#include <queue>
#include <deque>
#include <vector>
#include <complex>
#include <cmath>
//c++11
#include <tuple>
#define all(c) ((c).begin(),(c).end())
#define rall(c) (c).rbegin(),(c).rend()
//#define sort(v,n) sort(v,v+n)
//#define vsort(v) sort(v.begin(),v.end())
//#define vvsort(v) sort(v.begin(),v.end(),greater<int>())
#define ll long long
#define pb(a) push_back(a)
#define fi first
#define se second
#define inf 999999999
using namespace std;
const ll MOD = 1e9 + 7;
const double PI = acos(-1.0);
//---------------------------------------------------------------------------------------------//
int n;
bool b[10001];
int ans = 0;
void solve(int a) {
if (a == n)return;
if (b[a] == 1) {
ans = inf;
return;
}
b[a] = 1;
ans++;
int i = 1;
int keta = 1;
while (1) {
if (i == a)break;
if (i > a) { keta--; break; }
i *= 2;
keta++;
}
int cont = 0;
int aa = a;
while (a>0) {
if (a / i > 0) {
cont++; a %= i;
}
i /= 2;
}
if (aa + cont <= n) {
solve(aa + cont);
}
else {
solve(aa - cont);
}
return;
}
int main() {
cin >> n;
solve(1);
if (ans == inf) {
cout << -1 << endl;
return 0;
}
cout << ans+1 << endl;
return 0;
}
aim_cpo