結果

問題 No.1576 織姫と彦星
ユーザー m tm t
提出日時 2021-07-21 16:46:21
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 604 ms / 2,000 ms
コード長 492 bytes
コンパイル時間 100 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-07-17 14:05:52
合計ジャッジ時間 10,089 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 29 ms
10,624 KB
testcase_05 AC 29 ms
10,624 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 78 ms
10,624 KB
testcase_08 AC 48 ms
10,752 KB
testcase_09 AC 31 ms
10,752 KB
testcase_10 AC 286 ms
10,624 KB
testcase_11 AC 32 ms
10,752 KB
testcase_12 AC 172 ms
10,624 KB
testcase_13 AC 160 ms
10,752 KB
testcase_14 AC 282 ms
10,880 KB
testcase_15 AC 237 ms
10,624 KB
testcase_16 AC 123 ms
10,624 KB
testcase_17 AC 191 ms
10,624 KB
testcase_18 AC 62 ms
10,624 KB
testcase_19 AC 114 ms
10,752 KB
testcase_20 AC 34 ms
10,624 KB
testcase_21 AC 214 ms
10,624 KB
testcase_22 AC 64 ms
10,752 KB
testcase_23 AC 37 ms
10,624 KB
testcase_24 AC 51 ms
10,624 KB
testcase_25 AC 175 ms
10,624 KB
testcase_26 AC 144 ms
10,880 KB
testcase_27 AC 33 ms
10,624 KB
testcase_28 AC 171 ms
10,880 KB
testcase_29 AC 153 ms
10,624 KB
testcase_30 AC 31 ms
10,624 KB
testcase_31 AC 119 ms
10,624 KB
testcase_32 AC 187 ms
10,752 KB
testcase_33 AC 524 ms
10,752 KB
testcase_34 AC 32 ms
10,752 KB
testcase_35 AC 172 ms
10,624 KB
testcase_36 AC 54 ms
10,752 KB
testcase_37 AC 566 ms
10,880 KB
testcase_38 AC 240 ms
10,880 KB
testcase_39 AC 198 ms
10,624 KB
testcase_40 AC 134 ms
10,880 KB
testcase_41 AC 171 ms
10,624 KB
testcase_42 AC 39 ms
10,624 KB
testcase_43 AC 60 ms
10,624 KB
testcase_44 AC 604 ms
11,008 KB
testcase_45 AC 95 ms
10,624 KB
testcase_46 AC 374 ms
10,752 KB
testcase_47 AC 34 ms
10,880 KB
testcase_48 AC 203 ms
10,624 KB
testcase_49 AC 180 ms
10,880 KB
testcase_50 AC 35 ms
10,752 KB
testcase_51 AC 35 ms
10,624 KB
testcase_52 AC 57 ms
10,880 KB
testcase_53 AC 341 ms
10,624 KB
testcase_54 AC 205 ms
10,624 KB
testcase_55 AC 211 ms
10,624 KB
testcase_56 AC 228 ms
11,008 KB
testcase_57 AC 32 ms
10,624 KB
testcase_58 AC 80 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
#ハミング距離
def hamming(a,b):
    return bin(a^b).count('1')

n=int(input())
start,end=map(int,input().split())
stone=list(map(int,input().split()))
x=[start,end]+stone

#BFS
dist=[False]*(n+2)
que=deque([0])
dist[0]=0
while que:
    v=que.popleft()
    for u in range(n+2):
        if hamming(x[v],x[u])==1 and dist[u]==False:
            dist[u]=dist[v]+1
            que.append(u)

res=dist[1]
if not res:
    print(-1)
else:
    print(res-1)         
0