結果

問題 No.3 ビットすごろく
ユーザー tanon710tanon710
提出日時 2020-08-20 22:23:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 125 ms / 5,000 ms
コード長 1,091 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,536 KB
実行使用メモリ 79,492 KB
最終ジャッジ日時 2024-07-01 09:53:43
合計ジャッジ時間 4,132 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,944 KB
testcase_01 AC 42 ms
53,960 KB
testcase_02 AC 40 ms
53,580 KB
testcase_03 AC 88 ms
77,304 KB
testcase_04 AC 56 ms
66,516 KB
testcase_05 AC 104 ms
77,680 KB
testcase_06 AC 90 ms
77,732 KB
testcase_07 AC 73 ms
75,312 KB
testcase_08 AC 101 ms
77,500 KB
testcase_09 AC 111 ms
78,236 KB
testcase_10 AC 112 ms
79,032 KB
testcase_11 AC 107 ms
78,000 KB
testcase_12 AC 103 ms
77,484 KB
testcase_13 AC 84 ms
77,452 KB
testcase_14 AC 110 ms
78,024 KB
testcase_15 AC 122 ms
79,152 KB
testcase_16 AC 118 ms
78,932 KB
testcase_17 AC 122 ms
79,492 KB
testcase_18 AC 84 ms
77,156 KB
testcase_19 AC 125 ms
79,280 KB
testcase_20 AC 47 ms
61,088 KB
testcase_21 AC 39 ms
53,676 KB
testcase_22 AC 111 ms
78,316 KB
testcase_23 AC 124 ms
79,484 KB
testcase_24 AC 122 ms
79,236 KB
testcase_25 AC 124 ms
79,320 KB
testcase_26 AC 39 ms
52,592 KB
testcase_27 AC 86 ms
77,332 KB
testcase_28 AC 117 ms
78,848 KB
testcase_29 AC 108 ms
77,984 KB
testcase_30 AC 44 ms
59,684 KB
testcase_31 AC 45 ms
59,284 KB
testcase_32 AC 107 ms
77,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq

#edgeには[weight,v]を追加していく
def dijkstra(s,edge):
    #始点sから各頂点への最短距離
    d = [float("inf")] * (n+1)
    used = [True] * (n+1) #True:未確定
    d[s] = 0
    used[s] = False
    edgelist = []
    for e in edge[s]:
        heapq.heappush(edgelist,e)
    while len(edgelist):
        minedge = heapq.heappop(edgelist)
        #まだ使われてない頂点の中から最小の距離のものを探す
        if not used[minedge[1]]:
            continue
        v = minedge[1]
        d[v] = minedge[0]
        used[v] = False
        for e in edge[v]:
            if used[e[1]]:
                heapq.heappush(edgelist,[e[0]+d[v],e[1]])
    return d

def popcount(n):
    ret=0
    for i in range(20):
        if n&(1<<i):
            ret+=1
    return ret

n=int(input())
edges=[[] for _ in range(n+1)]
for v in range(1,n+1):
    pc=popcount(v)
    if v-pc>=1:
        edges[v].append((1,v-pc))
    if v+pc<=n:
        edges[v].append((1,v+pc))
ans=dijkstra(1,edges)
if ans[n]==float('inf'):
    print(-1)
else:
    print(ans[n]+1)
0