結果

問題 No.1576 織姫と彦星
ユーザー mokan0mokan0
提出日時 2021-07-21 14:45:04
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,291 ms / 2,000 ms
コード長 1,061 bytes
コンパイル時間 110 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-07-17 14:01:11
合計ジャッジ時間 27,388 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 32 ms
10,752 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 31 ms
10,880 KB
testcase_07 AC 294 ms
10,752 KB
testcase_08 AC 220 ms
10,880 KB
testcase_09 AC 35 ms
10,752 KB
testcase_10 AC 823 ms
10,752 KB
testcase_11 AC 36 ms
10,624 KB
testcase_12 AC 501 ms
10,752 KB
testcase_13 AC 1,054 ms
11,008 KB
testcase_14 AC 664 ms
10,880 KB
testcase_15 AC 664 ms
10,752 KB
testcase_16 AC 898 ms
10,880 KB
testcase_17 AC 662 ms
10,880 KB
testcase_18 AC 122 ms
10,624 KB
testcase_19 AC 206 ms
10,752 KB
testcase_20 AC 693 ms
10,880 KB
testcase_21 AC 605 ms
10,880 KB
testcase_22 AC 777 ms
10,752 KB
testcase_23 AC 98 ms
10,752 KB
testcase_24 AC 94 ms
10,752 KB
testcase_25 AC 911 ms
10,880 KB
testcase_26 AC 257 ms
10,752 KB
testcase_27 AC 42 ms
10,752 KB
testcase_28 AC 795 ms
10,752 KB
testcase_29 AC 260 ms
10,752 KB
testcase_30 AC 33 ms
10,752 KB
testcase_31 AC 299 ms
10,880 KB
testcase_32 AC 624 ms
10,752 KB
testcase_33 AC 1,167 ms
11,008 KB
testcase_34 AC 37 ms
10,752 KB
testcase_35 AC 363 ms
10,880 KB
testcase_36 AC 82 ms
10,624 KB
testcase_37 AC 1,291 ms
10,880 KB
testcase_38 AC 780 ms
10,880 KB
testcase_39 AC 439 ms
11,008 KB
testcase_40 AC 322 ms
10,880 KB
testcase_41 AC 381 ms
11,008 KB
testcase_42 AC 45 ms
10,880 KB
testcase_43 AC 120 ms
10,624 KB
testcase_44 AC 1,138 ms
10,880 KB
testcase_45 AC 310 ms
10,752 KB
testcase_46 AC 738 ms
10,752 KB
testcase_47 AC 145 ms
10,752 KB
testcase_48 AC 424 ms
11,008 KB
testcase_49 AC 390 ms
11,008 KB
testcase_50 AC 41 ms
10,752 KB
testcase_51 AC 96 ms
10,624 KB
testcase_52 AC 1,188 ms
10,752 KB
testcase_53 AC 639 ms
10,880 KB
testcase_54 AC 877 ms
10,880 KB
testcase_55 AC 1,121 ms
10,880 KB
testcase_56 AC 1,244 ms
10,880 KB
testcase_57 AC 33 ms
10,624 KB
testcase_58 AC 241 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque


def hamming_distance(a, b):
    tmp = bin(a ^ b)
    hd = 0
    for i in range(len(tmp)):
        if tmp[i] == '1':
            hd += 1
    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