結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 31 ms
10,624 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 32 ms
10,752 KB
testcase_07 AC 137 ms
10,752 KB
testcase_08 AC 110 ms
10,752 KB
testcase_09 AC 32 ms
10,624 KB
testcase_10 AC 359 ms
10,880 KB
testcase_11 AC 33 ms
10,752 KB
testcase_12 AC 230 ms
11,008 KB
testcase_13 AC 442 ms
10,752 KB
testcase_14 AC 302 ms
10,880 KB
testcase_15 AC 292 ms
10,880 KB
testcase_16 AC 402 ms
10,880 KB
testcase_17 AC 294 ms
11,008 KB
testcase_18 AC 72 ms
10,752 KB
testcase_19 AC 105 ms
10,752 KB
testcase_20 AC 296 ms
10,880 KB
testcase_21 AC 267 ms
11,008 KB
testcase_22 AC 343 ms
10,880 KB
testcase_23 AC 59 ms
10,752 KB
testcase_24 AC 58 ms
10,880 KB
testcase_25 AC 395 ms
10,880 KB
testcase_26 AC 126 ms
10,752 KB
testcase_27 AC 36 ms
10,624 KB
testcase_28 AC 358 ms
10,752 KB
testcase_29 AC 122 ms
10,880 KB
testcase_30 AC 30 ms
10,880 KB
testcase_31 AC 142 ms
10,880 KB
testcase_32 AC 277 ms
10,752 KB
testcase_33 AC 502 ms
11,136 KB
testcase_34 AC 33 ms
10,624 KB
testcase_35 AC 175 ms
10,752 KB
testcase_36 AC 52 ms
10,624 KB
testcase_37 AC 530 ms
11,008 KB
testcase_38 AC 353 ms
10,752 KB
testcase_39 AC 207 ms
10,752 KB
testcase_40 AC 153 ms
10,752 KB
testcase_41 AC 185 ms
11,008 KB
testcase_42 AC 37 ms
10,752 KB
testcase_43 AC 68 ms
10,752 KB
testcase_44 AC 485 ms
11,136 KB
testcase_45 AC 149 ms
10,880 KB
testcase_46 AC 327 ms
10,752 KB
testcase_47 AC 77 ms
10,752 KB
testcase_48 AC 192 ms
11,008 KB
testcase_49 AC 177 ms
11,008 KB
testcase_50 AC 34 ms
10,752 KB
testcase_51 AC 57 ms
10,624 KB
testcase_52 AC 503 ms
10,880 KB
testcase_53 AC 284 ms
10,752 KB
testcase_54 AC 373 ms
10,880 KB
testcase_55 AC 496 ms
10,880 KB
testcase_56 AC 531 ms
10,880 KB
testcase_57 AC 33 ms
10,752 KB
testcase_58 AC 119 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 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