結果

問題 No.1576 織姫と彦星
ユーザー tobusakanatobusakana
提出日時 2022-10-29 17:42:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 804 bytes
コンパイル時間 221 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 76,416 KB
最終ジャッジ日時 2024-07-06 15:23:44
合計ジャッジ時間 7,126 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
53,632 KB
testcase_01 AC 43 ms
53,632 KB
testcase_02 AC 44 ms
53,760 KB
testcase_03 AC 44 ms
53,888 KB
testcase_04 AC 44 ms
53,760 KB
testcase_05 AC 48 ms
53,760 KB
testcase_06 AC 50 ms
60,032 KB
testcase_07 AC 78 ms
76,160 KB
testcase_08 AC 74 ms
75,968 KB
testcase_09 AC 56 ms
63,744 KB
testcase_10 AC 108 ms
76,288 KB
testcase_11 AC 58 ms
64,640 KB
testcase_12 AC 95 ms
76,160 KB
testcase_13 AC 116 ms
76,288 KB
testcase_14 AC 102 ms
76,128 KB
testcase_15 AC 99 ms
76,156 KB
testcase_16 AC 109 ms
76,032 KB
testcase_17 AC 100 ms
76,032 KB
testcase_18 AC 70 ms
76,092 KB
testcase_19 AC 73 ms
76,032 KB
testcase_20 AC 96 ms
76,032 KB
testcase_21 AC 94 ms
76,160 KB
testcase_22 AC 102 ms
76,160 KB
testcase_23 AC 68 ms
76,020 KB
testcase_24 AC 69 ms
76,032 KB
testcase_25 AC 112 ms
76,288 KB
testcase_26 AC 78 ms
76,068 KB
testcase_27 AC 60 ms
66,176 KB
testcase_28 AC 105 ms
76,032 KB
testcase_29 AC 78 ms
76,060 KB
testcase_30 AC 50 ms
60,160 KB
testcase_31 AC 78 ms
76,160 KB
testcase_32 AC 98 ms
76,160 KB
testcase_33 AC 129 ms
76,288 KB
testcase_34 AC 60 ms
64,768 KB
testcase_35 AC 85 ms
76,160 KB
testcase_36 AC 66 ms
75,736 KB
testcase_37 AC 131 ms
76,160 KB
testcase_38 AC 106 ms
76,416 KB
testcase_39 AC 87 ms
76,416 KB
testcase_40 AC 81 ms
76,160 KB
testcase_41 AC 90 ms
76,236 KB
testcase_42 AC 59 ms
68,096 KB
testcase_43 AC 68 ms
76,032 KB
testcase_44 AC 126 ms
76,160 KB
testcase_45 AC 79 ms
76,288 KB
testcase_46 AC 105 ms
76,176 KB
testcase_47 AC 70 ms
75,940 KB
testcase_48 AC 85 ms
76,160 KB
testcase_49 AC 84 ms
76,000 KB
testcase_50 AC 58 ms
66,688 KB
testcase_51 AC 65 ms
76,112 KB
testcase_52 AC 123 ms
76,032 KB
testcase_53 AC 102 ms
76,036 KB
testcase_54 AC 122 ms
76,032 KB
testcase_55 AC 121 ms
76,184 KB
testcase_56 AC 126 ms
76,320 KB
testcase_57 AC 55 ms
63,232 KB
testcase_58 AC 75 ms
76,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline = sys.stdin.readline

N = int(readline())
s,g = map(int,readline().split())

A = [s] + list(map(int,readline().split())) + [g]
N += 2

def can_connect(X, Y):
  diff = 0
  while X or Y:
    if (X & 1) ^ (Y & 1):
      diff += 1
      if diff == 2:
        return False
    X >>= 1
    Y >>= 1
  return True
  
G = [[] for i in range(N)]
for i in range(N - 1):
  for j in range(i + 1, N):
    if can_connect(A[i], A[j]):
      G[i].append(j)
      G[j].append(i)

visited = [False] * N
from collections import deque
q = deque([])
q.append([0, 0])
while q:
  v, cost = q.popleft()
  if visited[v]:
    continue
  visited[v] = True
  if v == N - 1:
    print(cost - 1)
    break
  for child in G[v]:
    if visited[child]:
      continue
    q.append([child, cost + 1])
else:
  print(-1)
0