結果

問題 No.3 ビットすごろく
ユーザー ynishimuraynishimura
提出日時 2020-10-08 19:27:36
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 2,596 bytes
コンパイル時間 109 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-07-20 06:04:45
合計ジャッジ時間 2,235 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 33 ms
10,752 KB
testcase_03 AC 34 ms
10,624 KB
testcase_04 AC 32 ms
10,752 KB
testcase_05 AC 33 ms
10,752 KB
testcase_06 AC 32 ms
10,624 KB
testcase_07 AC 31 ms
10,624 KB
testcase_08 AC 33 ms
10,752 KB
testcase_09 AC 35 ms
10,752 KB
testcase_10 AC 35 ms
10,880 KB
testcase_11 AC 35 ms
10,752 KB
testcase_12 AC 33 ms
10,624 KB
testcase_13 AC 32 ms
10,752 KB
testcase_14 RE -
testcase_15 AC 36 ms
11,008 KB
testcase_16 AC 36 ms
11,008 KB
testcase_17 AC 36 ms
11,008 KB
testcase_18 AC 31 ms
10,496 KB
testcase_19 AC 36 ms
10,752 KB
testcase_20 AC 31 ms
10,624 KB
testcase_21 AC 30 ms
10,624 KB
testcase_22 RE -
testcase_23 AC 35 ms
11,008 KB
testcase_24 AC 36 ms
11,008 KB
testcase_25 AC 36 ms
11,008 KB
testcase_26 AC 30 ms
10,624 KB
testcase_27 AC 32 ms
10,752 KB
testcase_28 AC 35 ms
11,008 KB
testcase_29 AC 34 ms
10,752 KB
testcase_30 AC 30 ms
10,624 KB
testcase_31 AC 30 ms
10,752 KB
testcase_32 AC 34 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
N = int(input())


def movable_distance(num):
    "2進数で表現した時の1のビット数 => 前後に移動できる距離"
    # print(f'num:{num}, b:{bin(num)}')
    # 2進数表示した場合の1の数を数える
    return bin(num).count("1")


def bit():
    que = deque()
    que.append(1)
    # マスの数を表す整数N(1<N<10000)が与えられます。
    trout = [-1] * (N + 10)

    # 1から開始のマス
    trout[1] = 1

    while (len(que) > 0):
        # print(f'#### {que}')
        now = que.popleft()  #現在のマス目

        # debug
        # for i in range(N):
        #     if (i + 1 == now):
        #         print('*', end='')  #現在のマス目
        #     elif (now == N):
        #         print(f'gaol => {trout[now]}', end='')  #終了
        #         break
        #     elif (trout[i + 1] != -1):
        #         print('+', end='')  #探索済マス
        #     else:
        #         print('-', end='')  #未探索マス
        # print('|')

        if now == N:
            break
        movecnt = movable_distance(now)  #現在のマス目を2進数に変換した時の1の数
        # print(f'now {now}, movecnt {movecnt}')

        if (trout[now - movecnt] == -1
                and now - movecnt > 0):  #後ろのマスに移動するときの判定・処理
            trout[now - movecnt] = trout[now] + 1  #移動した先に移動数の最小値を記録(+1回しておく)
            que.append(now - movecnt)  #このマス目から次は探索を行うためキューに入れる
            # print(
            #     f'マス{now - movecnt}への移動数の最小値を記録: {trout[now - movecnt]}, 探索を行うための位置をappend: {now - movecnt}'
            # )

        if (trout[now + movecnt] == -1
                and now + movecnt <= N):  #前のマスに移動する時の判定・処理
            trout[now + movecnt] = trout[now] + 1  #移動した先に移動数の最小値を記録
            que.append(now + movecnt)  #このマス目から次は探索を行うためキューに入れる
            # print(
            #     f'マス{now + movecnt}への移動数の最小値を記録: {trout[now + movecnt]}, 探索を行うための位置をappend: {now + movecnt}'
            # )

    print(trout[N])
    # for i in range(N):
    #     if trout[i + 1] == -1:
    #         print('-|', end='')  #未探索
    #     else:
    #         print(f'{trout[i + 1]}|', end='')  #最小値移動数
    # print()


if __name__ == "__main__":
    bit()
0