結果

問題 No.1577 織姫と彦星2
ユーザー 👑 KazunKazun
提出日時 2021-06-29 17:54:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 178 ms / 2,000 ms
コード長 617 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,212 KB
実行使用メモリ 100,224 KB
最終ジャッジ日時 2024-06-25 20:05:04
合計ジャッジ時間 8,114 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
53,760 KB
testcase_01 AC 45 ms
53,888 KB
testcase_02 AC 45 ms
53,888 KB
testcase_03 AC 45 ms
53,504 KB
testcase_04 AC 45 ms
53,888 KB
testcase_05 AC 69 ms
71,168 KB
testcase_06 AC 59 ms
65,152 KB
testcase_07 AC 161 ms
93,440 KB
testcase_08 AC 101 ms
82,560 KB
testcase_09 AC 174 ms
100,224 KB
testcase_10 AC 91 ms
78,592 KB
testcase_11 AC 68 ms
67,840 KB
testcase_12 AC 124 ms
87,808 KB
testcase_13 AC 82 ms
75,520 KB
testcase_14 AC 134 ms
91,136 KB
testcase_15 AC 86 ms
75,776 KB
testcase_16 AC 156 ms
93,568 KB
testcase_17 AC 109 ms
84,736 KB
testcase_18 AC 54 ms
61,824 KB
testcase_19 AC 140 ms
91,392 KB
testcase_20 AC 129 ms
88,576 KB
testcase_21 AC 150 ms
93,440 KB
testcase_22 AC 151 ms
93,184 KB
testcase_23 AC 97 ms
81,152 KB
testcase_24 AC 159 ms
99,968 KB
testcase_25 AC 85 ms
74,112 KB
testcase_26 AC 98 ms
81,280 KB
testcase_27 AC 146 ms
94,976 KB
testcase_28 AC 130 ms
89,600 KB
testcase_29 AC 107 ms
85,376 KB
testcase_30 AC 112 ms
86,016 KB
testcase_31 AC 151 ms
93,440 KB
testcase_32 AC 58 ms
64,512 KB
testcase_33 AC 55 ms
62,464 KB
testcase_34 AC 103 ms
84,096 KB
testcase_35 AC 143 ms
91,264 KB
testcase_36 AC 145 ms
93,312 KB
testcase_37 AC 170 ms
100,096 KB
testcase_38 AC 178 ms
100,096 KB
testcase_39 AC 103 ms
82,560 KB
testcase_40 AC 102 ms
83,200 KB
testcase_41 AC 145 ms
97,408 KB
testcase_42 AC 123 ms
88,704 KB
testcase_43 AC 121 ms
88,832 KB
testcase_44 AC 60 ms
64,384 KB
testcase_45 AC 81 ms
72,448 KB
testcase_46 AC 79 ms
74,240 KB
testcase_47 AC 131 ms
97,280 KB
testcase_48 AC 91 ms
79,232 KB
testcase_49 AC 111 ms
84,992 KB
testcase_50 AC 98 ms
80,768 KB
testcase_51 AC 62 ms
66,432 KB
testcase_52 AC 162 ms
99,968 KB
testcase_53 AC 165 ms
100,224 KB
testcase_54 AC 112 ms
85,760 KB
testcase_55 AC 154 ms
99,840 KB
testcase_56 AC 87 ms
75,904 KB
testcase_57 AC 76 ms
71,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def Hamming(x,y):
    return bin(x^y).count("1")
#==================================================
from collections import deque

N=int(input())
S,G=map(int,input().split())
A=list(map(int,input().split()))

V=[S,G]+A
V_set=set(V)
V_ind={v:i for i,v in enumerate(V)}

E=[[] for _ in range(N+2)]
for i in range(N+2):
    w=1
    for _ in range(30):
        if V[i]^w in V_set:
            E[i].append(V_ind[V[i]^w])
        w<<=1

X=[-1]*(N+2); X[0]=0
Q=deque([0])

while Q:
    x=Q.popleft()
    for y in E[x]:
        if X[y]==-1:
            X[y]=X[x]+1
            Q.append(y)

print(X[1]-1 if X[1]!=-1 else -1)
0