結果

問題 No.3 ビットすごろく
ユーザー dazydazy
提出日時 2017-11-23 17:24:12
言語 C++11
(gcc 11.4.0)
結果
RE  
実行時間 -
コード長 1,524 bytes
コンパイル時間 479 ms
コンパイル使用メモリ 55,284 KB
実行使用メモリ 13,644 KB
最終ジャッジ日時 2024-11-27 05:46:18
合計ジャッジ時間 59,095 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,912 KB
testcase_01 AC 2 ms
13,636 KB
testcase_02 AC 2 ms
10,784 KB
testcase_03 AC 2 ms
12,068 KB
testcase_04 AC 2 ms
10,916 KB
testcase_05 RE -
testcase_06 RE -
testcase_07 AC 2 ms
10,788 KB
testcase_08 RE -
testcase_09 TLE -
testcase_10 RE -
testcase_11 RE -
testcase_12 TLE -
testcase_13 AC 6 ms
6,820 KB
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 RE -
testcase_18 AC 3 ms
6,820 KB
testcase_19 RE -
testcase_20 WA -
testcase_21 AC 4 ms
5,248 KB
testcase_22 TLE -
testcase_23 RE -
testcase_24 TLE -
testcase_25 RE -
testcase_26 AC 4 ms
5,248 KB
testcase_27 WA -
testcase_28 RE -
testcase_29 RE -
testcase_30 WA -
testcase_31 AC 3 ms
5,248 KB
testcase_32 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;

#define fastcin {\
    cin.tie(0);\
    ios::sync_with_stdio(false);\
}
//#define rep(i, a, b) for(int i = a; i < b; i++)
#define REP(i, a) for(int i = 0; i < a; i++)
#define scan(x) cin >> n;
#define print(x) cout << x << "\n"

int countbit(int n) {
    int count = 0;
    for (int i = 1; i < n + 1; i <<= 1) if (n & i) count++;
    return count;
}

int main() {
    fastcin;
    int n;
    scan(n);

    int masu[10001], turn[500][500];
    REP(i, 10001) masu[i] = 10002;

    int locate, count = 1, branch = 1, ans = -1;
    turn[count][branch] = 1;
    masu[1] = 1;

    int i = 1, j, move, p ,m, next;
    if (n != 1) {
        do {
            j = 1;
            next = 0;
            do {
                locate = turn[i][j];
                move = countbit(locate);
                p = locate + move;
                m = locate - move;
                if (p == n || m == n) {
                    ans = i + 1;
                    break;
                }
                if (masu[p] == 10002 && p < n) {
                    next++;
                    masu[p] = i + 1;
                    turn[i+1][next] = p;
                } else if (masu[m] == 10002 && m > 0) {
                    next++;
                    masu[m] = i + 1;
                    turn[i+1][next] = m;
                }
            } while (j++ <= branch);

            if (next > 0) count++;
            branch = next;

        } while (i++ <= count);
    } else ans = 1;

    print(ans);
    return 0;
}
0