結果

問題 No.3 ビットすごろく
ユーザー Yuta123456Yuta123456
提出日時 2020-05-20 01:50:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 62 ms / 5,000 ms
コード長 884 bytes
コンパイル時間 90 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 14,208 KB
最終ジャッジ日時 2024-07-01 09:47:41
合計ジャッジ時間 2,539 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 38 ms
11,392 KB
testcase_04 AC 33 ms
10,880 KB
testcase_05 AC 47 ms
12,544 KB
testcase_06 AC 38 ms
11,520 KB
testcase_07 AC 36 ms
11,136 KB
testcase_08 AC 44 ms
12,032 KB
testcase_09 AC 51 ms
13,184 KB
testcase_10 AC 56 ms
13,440 KB
testcase_11 AC 50 ms
12,800 KB
testcase_12 AC 46 ms
12,544 KB
testcase_13 AC 37 ms
11,392 KB
testcase_14 AC 56 ms
13,440 KB
testcase_15 AC 60 ms
14,080 KB
testcase_16 AC 60 ms
13,824 KB
testcase_17 AC 61 ms
14,208 KB
testcase_18 AC 36 ms
11,264 KB
testcase_19 AC 60 ms
14,080 KB
testcase_20 AC 32 ms
10,752 KB
testcase_21 AC 30 ms
10,752 KB
testcase_22 AC 55 ms
13,440 KB
testcase_23 AC 62 ms
14,080 KB
testcase_24 AC 62 ms
14,080 KB
testcase_25 AC 61 ms
14,080 KB
testcase_26 AC 30 ms
10,624 KB
testcase_27 AC 38 ms
11,392 KB
testcase_28 AC 58 ms
13,824 KB
testcase_29 AC 50 ms
12,928 KB
testcase_30 AC 31 ms
10,624 KB
testcase_31 AC 31 ms
10,624 KB
testcase_32 AC 49 ms
12,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
adjacent_list = [[] for i in range(n+1)]
for i in range(1,n+1):
    count = "{:b}".format(i).count('1')
    if i - count >= 1:
        adjacent_list[i].append([i-count,1])
    if i + count <= n:
        adjacent_list[i].append([i+count,1])
from heapq import heappush, heappop
def dijkstra(start,graph):
    INF = 10 ** 15
    dist = [INF] * (n+1)
    dist[start] = 0
    q = [(0,start)]
    while q:
        d,v = heappop(q)
        if dist[v] < d:
            continue
        for w,a in graph[v]:
            d1 = d + a
            if dist[w] > d1:
                dist[w] = d1
                heappush(q, (d1,w))
    return dist
#このまま適当にはって使える感じではない?
#隣接リスト適当に渡せば動く。重みを追加するのをわすれずに
d = dijkstra(1,adjacent_list)
if d[-1] == 10**15:
    print(-1)
else:
    print(d[-1]+1)
0