結果

問題 No.3 ビットすごろく
ユーザー pro_kunipro_kuni
提出日時 2019-10-13 21:37:30
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 97 ms / 5,000 ms
コード長 1,138 bytes
コンパイル時間 209 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 11,392 KB
最終ジャッジ日時 2024-07-01 09:32:03
合計ジャッジ時間 3,204 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
11,008 KB
testcase_01 AC 33 ms
11,136 KB
testcase_02 AC 33 ms
11,264 KB
testcase_03 AC 49 ms
11,008 KB
testcase_04 AC 38 ms
11,136 KB
testcase_05 AC 66 ms
11,264 KB
testcase_06 AC 49 ms
11,008 KB
testcase_07 AC 43 ms
11,136 KB
testcase_08 AC 60 ms
11,008 KB
testcase_09 AC 76 ms
11,136 KB
testcase_10 AC 86 ms
11,264 KB
testcase_11 AC 71 ms
11,264 KB
testcase_12 AC 64 ms
11,136 KB
testcase_13 AC 46 ms
11,136 KB
testcase_14 AC 84 ms
11,136 KB
testcase_15 AC 95 ms
11,264 KB
testcase_16 AC 90 ms
11,392 KB
testcase_17 AC 94 ms
11,136 KB
testcase_18 AC 44 ms
11,136 KB
testcase_19 AC 95 ms
11,136 KB
testcase_20 AC 37 ms
11,136 KB
testcase_21 AC 33 ms
11,136 KB
testcase_22 AC 83 ms
11,392 KB
testcase_23 AC 97 ms
11,136 KB
testcase_24 AC 95 ms
11,264 KB
testcase_25 AC 95 ms
11,136 KB
testcase_26 AC 34 ms
11,136 KB
testcase_27 AC 47 ms
11,008 KB
testcase_28 AC 89 ms
11,136 KB
testcase_29 AC 73 ms
11,392 KB
testcase_30 AC 34 ms
11,136 KB
testcase_31 AC 34 ms
11,136 KB
testcase_32 AC 69 ms
11,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, queue

class Walker():
    def __init__(self, num):
        self.num = num

    def getNum(self):
        return self.num

    def getStep(self):
        return self.step

    def setStep(self, step):
        self.step = step

    def getMovility(self):
        cnt = 0
        bin_num = bin(self.num)[2:]
        for i in bin_num:
            if int(i):
                cnt += 1
        return cnt

n = int(input())
q = queue.Queue()
current = 1
movility = 1
step = 1

visited = [False for i in range(n)]

while True:
    if current == n:
        print(step)
        break

    if current - movility > 0 and not visited[current - movility - 1]:
        w = Walker(current - movility)
        w.setStep(step + 1)
        q.put(w)
        visited[current - movility - 1] = True
    if current + movility <= n and not visited[current + movility - 1]:
        w = Walker(current + movility)
        w.setStep(step + 1)
        q.put(w)
        visited[current + movility - 1] = True

    if q.empty():
        print(-1)
        break

    w = q.get()
    current = w.getNum()
    step = w.getStep()
    movility = w.getMovility()
0