結果

問題 No.1576 織姫と彦星
ユーザー mokan0mokan0
提出日時 2021-07-21 14:45:04
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,270 ms / 2,000 ms
コード長 1,061 bytes
コンパイル時間 109 ms
コンパイル使用メモリ 10,944 KB
実行使用メモリ 8,832 KB
最終ジャッジ日時 2023-09-24 13:08:35
合計ジャッジ時間 27,059 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 18 ms
8,612 KB
testcase_01 AC 18 ms
8,668 KB
testcase_02 AC 17 ms
8,604 KB
testcase_03 AC 18 ms
8,592 KB
testcase_04 AC 18 ms
8,536 KB
testcase_05 AC 18 ms
8,532 KB
testcase_06 AC 19 ms
8,676 KB
testcase_07 AC 284 ms
8,696 KB
testcase_08 AC 210 ms
8,696 KB
testcase_09 AC 22 ms
8,652 KB
testcase_10 AC 819 ms
8,704 KB
testcase_11 AC 23 ms
8,596 KB
testcase_12 AC 490 ms
8,740 KB
testcase_13 AC 1,040 ms
8,656 KB
testcase_14 AC 651 ms
8,772 KB
testcase_15 AC 643 ms
8,756 KB
testcase_16 AC 884 ms
8,732 KB
testcase_17 AC 660 ms
8,772 KB
testcase_18 AC 108 ms
8,660 KB
testcase_19 AC 196 ms
8,708 KB
testcase_20 AC 687 ms
8,588 KB
testcase_21 AC 606 ms
8,608 KB
testcase_22 AC 775 ms
8,684 KB
testcase_23 AC 86 ms
8,692 KB
testcase_24 AC 82 ms
8,600 KB
testcase_25 AC 898 ms
8,720 KB
testcase_26 AC 246 ms
8,768 KB
testcase_27 AC 30 ms
8,652 KB
testcase_28 AC 775 ms
8,776 KB
testcase_29 AC 249 ms
8,716 KB
testcase_30 AC 19 ms
8,644 KB
testcase_31 AC 290 ms
8,728 KB
testcase_32 AC 621 ms
8,816 KB
testcase_33 AC 1,154 ms
8,712 KB
testcase_34 AC 24 ms
8,588 KB
testcase_35 AC 348 ms
8,592 KB
testcase_36 AC 67 ms
8,696 KB
testcase_37 AC 1,270 ms
8,772 KB
testcase_38 AC 780 ms
8,732 KB
testcase_39 AC 432 ms
8,764 KB
testcase_40 AC 309 ms
8,732 KB
testcase_41 AC 366 ms
8,616 KB
testcase_42 AC 33 ms
8,656 KB
testcase_43 AC 107 ms
8,700 KB
testcase_44 AC 1,115 ms
8,716 KB
testcase_45 AC 296 ms
8,704 KB
testcase_46 AC 700 ms
8,816 KB
testcase_47 AC 135 ms
8,688 KB
testcase_48 AC 418 ms
8,732 KB
testcase_49 AC 378 ms
8,612 KB
testcase_50 AC 27 ms
8,600 KB
testcase_51 AC 83 ms
8,632 KB
testcase_52 AC 1,146 ms
8,644 KB
testcase_53 AC 636 ms
8,832 KB
testcase_54 AC 873 ms
8,672 KB
testcase_55 AC 1,114 ms
8,768 KB
testcase_56 AC 1,241 ms
8,692 KB
testcase_57 AC 21 ms
8,628 KB
testcase_58 AC 232 ms
8,584 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