結果

問題 No.3 ビットすごろく
ユーザー siganaisiganai
提出日時 2022-05-26 14:33:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 75 ms / 5,000 ms
コード長 1,001 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 70,528 KB
最終ジャッジ日時 2024-09-20 14:59:52
合計ジャッジ時間 3,216 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
64,128 KB
testcase_01 AC 56 ms
64,128 KB
testcase_02 AC 55 ms
64,256 KB
testcase_03 AC 62 ms
66,944 KB
testcase_04 AC 58 ms
64,256 KB
testcase_05 AC 75 ms
69,760 KB
testcase_06 AC 70 ms
67,456 KB
testcase_07 AC 63 ms
66,304 KB
testcase_08 AC 67 ms
69,120 KB
testcase_09 AC 68 ms
69,888 KB
testcase_10 AC 70 ms
70,016 KB
testcase_11 AC 69 ms
70,016 KB
testcase_12 AC 68 ms
69,760 KB
testcase_13 AC 61 ms
67,072 KB
testcase_14 AC 70 ms
70,400 KB
testcase_15 AC 69 ms
70,528 KB
testcase_16 AC 69 ms
70,272 KB
testcase_17 AC 70 ms
70,144 KB
testcase_18 AC 65 ms
67,200 KB
testcase_19 AC 69 ms
70,528 KB
testcase_20 AC 55 ms
64,128 KB
testcase_21 AC 56 ms
64,256 KB
testcase_22 AC 71 ms
70,400 KB
testcase_23 AC 70 ms
70,400 KB
testcase_24 AC 68 ms
70,016 KB
testcase_25 AC 70 ms
70,016 KB
testcase_26 AC 57 ms
64,000 KB
testcase_27 AC 62 ms
66,688 KB
testcase_28 AC 71 ms
70,400 KB
testcase_29 AC 70 ms
70,016 KB
testcase_30 AC 59 ms
64,256 KB
testcase_31 AC 57 ms
63,872 KB
testcase_32 AC 70 ms
70,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter, defaultdict, deque
import itertools
import re
import math
from functools import reduce
import operator
import bisect
from heapq import *
import functools

mod=10 ** 9 + 7

import sys
input = sys.stdin.readline
def popcount(x):
    x -= (x >> 1) & 0x55555555
    x = (x & 0x33333333) + ((x >> 2) & 0x33333333)
    x = (x + (x >> 4)) & 0x0f0f0f0f
    x += x >> 8
    x += x >> 16
    return x & 0x3f
def popcount_parity(x):
    x ^= x >> 1
    x ^= x >> 2
    x ^= x >> 4
    x ^= x >> 8
    x ^= x >> 16
    return x & 1
n = int(input())
INF = 1 << 31
dist = [INF] * (n + 1)
dist[1] = 1
go = deque([1])
while go:
    now = go.pop()
    p = popcount(now)
    if now - p > 0:
        if dist[now - p] == INF:
            dist[now - p] = dist[now] + 1
            go.appendleft(now-p)
    if now + p <= n:
        if dist[now + p] == INF:
            dist[now + p] = dist[now] + 1
            go.appendleft(now+p)
if dist[n] == INF:
    print(-1)
else:
    print(dist[n])
0