結果

問題 No.1576 織姫と彦星
ユーザー 👑 KazunKazun
提出日時 2021-06-29 17:38:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 536 ms / 2,000 ms
コード長 479 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 82,816 KB
実行使用メモリ 76,720 KB
最終ジャッジ日時 2024-06-25 19:48:31
合計ジャッジ時間 10,451 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,016 KB
testcase_01 AC 44 ms
54,016 KB
testcase_02 AC 43 ms
53,888 KB
testcase_03 AC 43 ms
53,888 KB
testcase_04 AC 43 ms
53,632 KB
testcase_05 AC 43 ms
53,504 KB
testcase_06 AC 43 ms
53,504 KB
testcase_07 AC 99 ms
76,152 KB
testcase_08 AC 69 ms
76,032 KB
testcase_09 AC 53 ms
63,744 KB
testcase_10 AC 279 ms
76,192 KB
testcase_11 AC 53 ms
64,000 KB
testcase_12 AC 174 ms
76,288 KB
testcase_13 AC 166 ms
75,904 KB
testcase_14 AC 263 ms
76,324 KB
testcase_15 AC 231 ms
76,416 KB
testcase_16 AC 134 ms
75,904 KB
testcase_17 AC 196 ms
76,544 KB
testcase_18 AC 84 ms
76,160 KB
testcase_19 AC 135 ms
76,416 KB
testcase_20 AC 54 ms
65,024 KB
testcase_21 AC 214 ms
76,288 KB
testcase_22 AC 84 ms
76,032 KB
testcase_23 AC 57 ms
66,944 KB
testcase_24 AC 76 ms
76,288 KB
testcase_25 AC 181 ms
76,416 KB
testcase_26 AC 163 ms
76,288 KB
testcase_27 AC 52 ms
63,744 KB
testcase_28 AC 172 ms
76,416 KB
testcase_29 AC 167 ms
76,720 KB
testcase_30 AC 44 ms
55,168 KB
testcase_31 AC 137 ms
76,164 KB
testcase_32 AC 190 ms
76,416 KB
testcase_33 AC 460 ms
76,416 KB
testcase_34 AC 54 ms
63,232 KB
testcase_35 AC 184 ms
76,288 KB
testcase_36 AC 80 ms
76,416 KB
testcase_37 AC 486 ms
76,288 KB
testcase_38 AC 223 ms
76,288 KB
testcase_39 AC 194 ms
76,496 KB
testcase_40 AC 149 ms
76,160 KB
testcase_41 AC 174 ms
76,288 KB
testcase_42 AC 59 ms
68,864 KB
testcase_43 AC 84 ms
76,036 KB
testcase_44 AC 536 ms
76,672 KB
testcase_45 AC 113 ms
76,032 KB
testcase_46 AC 342 ms
76,416 KB
testcase_47 AC 56 ms
65,280 KB
testcase_48 AC 211 ms
76,288 KB
testcase_49 AC 190 ms
76,160 KB
testcase_50 AC 56 ms
65,664 KB
testcase_51 AC 58 ms
65,792 KB
testcase_52 AC 78 ms
76,160 KB
testcase_53 AC 327 ms
76,416 KB
testcase_54 AC 201 ms
76,312 KB
testcase_55 AC 205 ms
76,296 KB
testcase_56 AC 215 ms
76,288 KB
testcase_57 AC 52 ms
63,488 KB
testcase_58 AC 98 ms
75,988 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
Q=deque([0])
X=[-1]*(N+2); X[0]=0

while Q:
    x=Q.popleft()
    for y in range(N+2):
        if Hamming(V[x],V[y])==1 and X[y]==-1:
            X[y]=X[x]+1
            Q.append(y)

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