結果

問題 No.3 ビットすごろく
ユーザー あかしあみどりあかしあみどり
提出日時 2023-02-15 21:32:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 114 ms / 5,000 ms
コード長 1,178 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 78,904 KB
最終ジャッジ日時 2024-07-18 04:49:41
合計ジャッジ時間 4,184 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,608 KB
testcase_01 AC 41 ms
52,864 KB
testcase_02 AC 40 ms
52,676 KB
testcase_03 AC 77 ms
73,216 KB
testcase_04 AC 54 ms
62,976 KB
testcase_05 AC 99 ms
77,808 KB
testcase_06 AC 89 ms
76,928 KB
testcase_07 AC 71 ms
69,632 KB
testcase_08 AC 100 ms
77,356 KB
testcase_09 AC 103 ms
77,696 KB
testcase_10 AC 108 ms
78,040 KB
testcase_11 AC 102 ms
77,696 KB
testcase_12 AC 101 ms
77,568 KB
testcase_13 AC 73 ms
71,552 KB
testcase_14 AC 107 ms
78,260 KB
testcase_15 AC 114 ms
78,556 KB
testcase_16 AC 110 ms
78,464 KB
testcase_17 AC 111 ms
78,904 KB
testcase_18 AC 73 ms
70,528 KB
testcase_19 AC 112 ms
78,592 KB
testcase_20 AC 50 ms
61,312 KB
testcase_21 AC 41 ms
52,864 KB
testcase_22 AC 104 ms
78,080 KB
testcase_23 AC 111 ms
78,532 KB
testcase_24 AC 114 ms
78,720 KB
testcase_25 AC 112 ms
78,656 KB
testcase_26 AC 41 ms
52,608 KB
testcase_27 AC 75 ms
72,960 KB
testcase_28 AC 108 ms
78,316 KB
testcase_29 AC 101 ms
77,952 KB
testcase_30 AC 42 ms
53,248 KB
testcase_31 AC 42 ms
53,120 KB
testcase_32 AC 101 ms
77,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def oi(): return int(input())
def os(): return input()
def mi(): return list(map(int, input().split()))

# import sys
# input = sys.stdin.readline
# import sys
# sys.setrecursionlimit(10**8)
# import pypyjit
# pypyjit.set_param('max_unroll_recursion=-1')
input_count = 0

input_count = 0
N = oi()
maps = {i:[] for i in range(1, N + 1)}
for i in range(1, N+1):
    count = 0
    j = i
    while j:
        if j%2==1:
            count += 1
        j //= 2

    if i-count >0:
        maps[i].append((i-count, 1))
    if i+count <=N:
        maps[i].append((i+count,1))
# V: 頂点数
# g[v] = {(w, cost)}:
#     頂点vから遷移可能な頂点(w)とそのコスト(cost)
# r: 始点の頂点
 
from heapq import heappush, heappop
INF = float("inf")
def dijkstra(N, G, s):
    dist = [INF] * N
    que = [(0, s)]
    dist[s] = 0
    while que:
        c, v = heappop(que)
        if dist[v] < c:
            continue
        for t, cost in G[v]:
            if dist[v] + cost < dist[t]:
                dist[t] = dist[v] + cost
                heappush(que, (dist[t], t))
    return dist
dist = dijkstra(N+1, maps, 1)
if dist[N] != INF:
    print(dist[N]+1)
else:
    print(-1)
0