結果

問題 No.1576 織姫と彦星
ユーザー mokan0mokan0
提出日時 2021-07-21 15:00:54
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 508 ms / 2,000 ms
コード長 1,149 bytes
コンパイル時間 318 ms
コンパイル使用メモリ 11,052 KB
実行使用メモリ 8,828 KB
最終ジャッジ日時 2023-09-24 13:09:12
合計ジャッジ時間 12,684 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 17 ms
8,620 KB
testcase_01 AC 17 ms
8,672 KB
testcase_02 AC 17 ms
8,596 KB
testcase_03 AC 17 ms
8,600 KB
testcase_04 AC 17 ms
8,604 KB
testcase_05 AC 17 ms
8,624 KB
testcase_06 AC 18 ms
8,664 KB
testcase_07 AC 117 ms
8,680 KB
testcase_08 AC 95 ms
8,728 KB
testcase_09 AC 19 ms
8,628 KB
testcase_10 AC 329 ms
8,760 KB
testcase_11 AC 20 ms
8,572 KB
testcase_12 AC 205 ms
8,740 KB
testcase_13 AC 408 ms
8,692 KB
testcase_14 AC 267 ms
8,664 KB
testcase_15 AC 264 ms
8,704 KB
testcase_16 AC 370 ms
8,672 KB
testcase_17 AC 272 ms
8,720 KB
testcase_18 AC 57 ms
8,712 KB
testcase_19 AC 88 ms
8,612 KB
testcase_20 AC 276 ms
8,636 KB
testcase_21 AC 243 ms
8,764 KB
testcase_22 AC 328 ms
8,680 KB
testcase_23 AC 46 ms
8,744 KB
testcase_24 AC 42 ms
8,724 KB
testcase_25 AC 355 ms
8,684 KB
testcase_26 AC 109 ms
8,688 KB
testcase_27 AC 23 ms
8,556 KB
testcase_28 AC 331 ms
8,784 KB
testcase_29 AC 111 ms
8,692 KB
testcase_30 AC 18 ms
8,628 KB
testcase_31 AC 118 ms
8,700 KB
testcase_32 AC 242 ms
8,764 KB
testcase_33 AC 473 ms
8,828 KB
testcase_34 AC 21 ms
8,672 KB
testcase_35 AC 154 ms
8,728 KB
testcase_36 AC 39 ms
8,572 KB
testcase_37 AC 508 ms
8,796 KB
testcase_38 AC 333 ms
8,732 KB
testcase_39 AC 182 ms
8,660 KB
testcase_40 AC 136 ms
8,672 KB
testcase_41 AC 171 ms
8,804 KB
testcase_42 AC 24 ms
8,608 KB
testcase_43 AC 55 ms
8,664 KB
testcase_44 AC 458 ms
8,796 KB
testcase_45 AC 133 ms
8,656 KB
testcase_46 AC 314 ms
8,812 KB
testcase_47 AC 66 ms
8,724 KB
testcase_48 AC 178 ms
8,812 KB
testcase_49 AC 151 ms
8,752 KB
testcase_50 AC 21 ms
8,596 KB
testcase_51 AC 44 ms
8,568 KB
testcase_52 AC 461 ms
8,704 KB
testcase_53 AC 262 ms
8,692 KB
testcase_54 AC 364 ms
8,772 KB
testcase_55 AC 467 ms
8,660 KB
testcase_56 AC 488 ms
8,796 KB
testcase_57 AC 18 ms
8,676 KB
testcase_58 AC 105 ms
8,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque


def hamming_distance(a, b):
    tmp = bin(a ^ b)
    hd = 0
    for i in range(len(tmp)):
        if hd == 0 and tmp[i] == '1':
            hd = 1
        elif hd == 1 and tmp[i] == '1':
            hd = 2
            break
    return hd


N = int(input())
start, end = map(int, input().split())
stone = list(map(int, input().split()))
#print(N, start, end, stone)

all_stone = [start]+stone+[end]
#print(hamming_distance(start, end), all_stone)
g = [[] for _ in range(N+2)]  # 隣接リスト
for i in range(len(all_stone)-1):
    for j in range(i+1, len(all_stone)):
        dis = hamming_distance(all_stone[i], all_stone[j])
        if dis == 1:
            g[i].append(j)
            g[j].append(i)
# print(g)


def bfs(u):
    queue = deque([u])
    d = [None]*len(all_stone)  # uからの距離の初期化
    #print(queue, d)
    d[u] = 0
    while queue:
        v = queue.popleft()
        for i in g[v]:
            if d[i] is None:
                d[i] = d[v]+1
                queue.append(i)
    return d


d = bfs(0)
if d[len(all_stone)-1] is None:
    print(-1)
else:
    print(d[len(all_stone)-1]-1)
0