結果

問題 No.3 ビットすごろく
ユーザー dazydazy
提出日時 2017-11-23 16:46:37
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,492 bytes
コンパイル時間 398 ms
コンパイル使用メモリ 55,348 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-05 09:43:29
合計ジャッジ時間 1,817 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

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 count = 1, locate = 1, branch = 1, ans = -1;
    turn[count][branch] = 1;
    masu[1] = 1;

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

    print(ans);
    return 0;
}
0