結果

問題 No.1577 織姫と彦星2
ユーザー 👑 KazunKazun
提出日時 2021-06-29 17:52:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 224 ms / 2,000 ms
コード長 659 bytes
コンパイル時間 361 ms
コンパイル使用メモリ 82,004 KB
実行使用メモリ 100,288 KB
最終ジャッジ日時 2024-06-25 20:03:10
合計ジャッジ時間 9,902 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,776 KB
testcase_01 AC 43 ms
54,024 KB
testcase_02 AC 44 ms
54,692 KB
testcase_03 AC 48 ms
53,612 KB
testcase_04 AC 45 ms
54,192 KB
testcase_05 AC 71 ms
72,456 KB
testcase_06 AC 57 ms
65,652 KB
testcase_07 AC 190 ms
93,552 KB
testcase_08 AC 107 ms
82,304 KB
testcase_09 AC 224 ms
100,288 KB
testcase_10 AC 97 ms
78,648 KB
testcase_11 AC 69 ms
68,600 KB
testcase_12 AC 134 ms
87,896 KB
testcase_13 AC 82 ms
76,820 KB
testcase_14 AC 150 ms
91,256 KB
testcase_15 AC 89 ms
75,572 KB
testcase_16 AC 180 ms
93,436 KB
testcase_17 AC 120 ms
84,864 KB
testcase_18 AC 52 ms
61,476 KB
testcase_19 AC 161 ms
91,248 KB
testcase_20 AC 141 ms
88,696 KB
testcase_21 AC 174 ms
93,352 KB
testcase_22 AC 174 ms
93,300 KB
testcase_23 AC 103 ms
81,104 KB
testcase_24 AC 195 ms
99,984 KB
testcase_25 AC 88 ms
74,368 KB
testcase_26 AC 103 ms
81,276 KB
testcase_27 AC 166 ms
95,228 KB
testcase_28 AC 146 ms
89,608 KB
testcase_29 AC 111 ms
85,552 KB
testcase_30 AC 122 ms
85,876 KB
testcase_31 AC 178 ms
93,432 KB
testcase_32 AC 56 ms
64,980 KB
testcase_33 AC 52 ms
62,420 KB
testcase_34 AC 114 ms
84,172 KB
testcase_35 AC 169 ms
91,300 KB
testcase_36 AC 172 ms
93,428 KB
testcase_37 AC 213 ms
100,196 KB
testcase_38 AC 211 ms
99,980 KB
testcase_39 AC 108 ms
82,356 KB
testcase_40 AC 108 ms
83,208 KB
testcase_41 AC 172 ms
97,504 KB
testcase_42 AC 134 ms
88,652 KB
testcase_43 AC 136 ms
89,088 KB
testcase_44 AC 57 ms
65,740 KB
testcase_45 AC 80 ms
73,072 KB
testcase_46 AC 78 ms
74,256 KB
testcase_47 AC 151 ms
96,960 KB
testcase_48 AC 95 ms
79,140 KB
testcase_49 AC 119 ms
84,904 KB
testcase_50 AC 100 ms
80,980 KB
testcase_51 AC 60 ms
66,576 KB
testcase_52 AC 189 ms
100,112 KB
testcase_53 AC 194 ms
99,952 KB
testcase_54 AC 118 ms
85,720 KB
testcase_55 AC 182 ms
99,756 KB
testcase_56 AC 86 ms
75,920 KB
testcase_57 AC 75 ms
71,364 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def popcount(x):
    return bin(x).count("1")

def Hamming(x,y):
    return popcount(x^y)
#==================================================
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(40):
        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