結果

問題 No.3 ビットすごろく
ユーザー FromBooskaFromBooska
提出日時 2023-09-12 20:06:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 119 ms / 5,000 ms
コード長 1,043 bytes
コンパイル時間 135 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 79,200 KB
最終ジャッジ日時 2024-06-30 07:46:54
合計ジャッジ時間 4,036 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,344 KB
testcase_01 AC 37 ms
54,216 KB
testcase_02 AC 37 ms
52,884 KB
testcase_03 AC 80 ms
75,368 KB
testcase_04 AC 47 ms
62,120 KB
testcase_05 AC 98 ms
77,740 KB
testcase_06 AC 81 ms
77,172 KB
testcase_07 AC 65 ms
72,172 KB
testcase_08 AC 98 ms
77,224 KB
testcase_09 AC 104 ms
77,964 KB
testcase_10 AC 107 ms
78,100 KB
testcase_11 AC 105 ms
77,804 KB
testcase_12 AC 100 ms
77,480 KB
testcase_13 AC 71 ms
73,124 KB
testcase_14 AC 108 ms
77,992 KB
testcase_15 AC 114 ms
79,016 KB
testcase_16 AC 113 ms
78,824 KB
testcase_17 AC 115 ms
79,052 KB
testcase_18 AC 68 ms
71,872 KB
testcase_19 AC 117 ms
79,172 KB
testcase_20 AC 41 ms
55,108 KB
testcase_21 AC 37 ms
53,424 KB
testcase_22 AC 110 ms
77,916 KB
testcase_23 AC 117 ms
79,092 KB
testcase_24 AC 115 ms
78,960 KB
testcase_25 AC 119 ms
79,200 KB
testcase_26 AC 40 ms
52,976 KB
testcase_27 AC 74 ms
74,664 KB
testcase_28 AC 110 ms
78,668 KB
testcase_29 AC 105 ms
77,856 KB
testcase_30 AC 39 ms
53,004 KB
testcase_31 AC 39 ms
54,276 KB
testcase_32 AC 102 ms
77,740 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# うーん、愚直にダイクストラで間に合うのか

N = int(input())
edges = [[] for i in range(N+1)]
for i in range(1, N+1):
    num = bin(i).count('1')
    if i-num >= 1:
        edges[i].append((i-num, 1))
    if i+num <= N:
        edges[i].append((i+num, 1))

from heapq import heappush, heappop
INF = 10 ** 18
def dijkstra(s, n, connect): #(始点, ノード数)
    distance = [INF] * n
    que = [(0, s)] #(distance, node)
    distance[s] = 0
    confirmed = [False] * n # ノードが確定済みかどうか
    while que:
        w,v = heappop(que)
        if distance[v]<w:
            continue
        confirmed[v] = True
        for to, cost in connect[v]: # ノード v に隣接しているノードに対して
            if confirmed[to] == False and distance[v] + cost < distance[to]:
                distance[to] = distance[v] + cost
                heappush(que, (distance[to], to))
    return distance
 
distance = dijkstra(1, N+1, edges)
ans = distance[N]+1
if ans >= INF:
    print(-1)
else:
    print(ans)
0