結果

問題 No.1576 織姫と彦星
ユーザー m tm t
提出日時 2021-07-21 13:24:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 895 ms / 2,000 ms
コード長 538 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 82,076 KB
実行使用メモリ 76,840 KB
最終ジャッジ日時 2024-07-17 13:59:39
合計ジャッジ時間 14,727 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,364 KB
testcase_01 AC 42 ms
54,692 KB
testcase_02 AC 42 ms
54,784 KB
testcase_03 AC 42 ms
54,204 KB
testcase_04 AC 41 ms
55,240 KB
testcase_05 AC 42 ms
53,848 KB
testcase_06 AC 43 ms
54,768 KB
testcase_07 AC 133 ms
76,532 KB
testcase_08 AC 85 ms
76,012 KB
testcase_09 AC 59 ms
71,468 KB
testcase_10 AC 438 ms
76,672 KB
testcase_11 AC 56 ms
67,992 KB
testcase_12 AC 268 ms
76,624 KB
testcase_13 AC 252 ms
76,340 KB
testcase_14 AC 416 ms
76,732 KB
testcase_15 AC 357 ms
76,592 KB
testcase_16 AC 193 ms
76,520 KB
testcase_17 AC 300 ms
76,700 KB
testcase_18 AC 107 ms
76,524 KB
testcase_19 AC 196 ms
76,744 KB
testcase_20 AC 65 ms
76,096 KB
testcase_21 AC 328 ms
76,840 KB
testcase_22 AC 109 ms
76,140 KB
testcase_23 AC 70 ms
76,464 KB
testcase_24 AC 93 ms
76,380 KB
testcase_25 AC 273 ms
76,472 KB
testcase_26 AC 243 ms
76,548 KB
testcase_27 AC 59 ms
72,064 KB
testcase_28 AC 265 ms
76,536 KB
testcase_29 AC 253 ms
76,684 KB
testcase_30 AC 49 ms
62,676 KB
testcase_31 AC 197 ms
76,504 KB
testcase_32 AC 290 ms
76,500 KB
testcase_33 AC 785 ms
76,588 KB
testcase_34 AC 58 ms
71,148 KB
testcase_35 AC 268 ms
76,564 KB
testcase_36 AC 98 ms
76,228 KB
testcase_37 AC 815 ms
76,496 KB
testcase_38 AC 350 ms
76,712 KB
testcase_39 AC 298 ms
76,484 KB
testcase_40 AC 217 ms
76,680 KB
testcase_41 AC 264 ms
76,584 KB
testcase_42 AC 72 ms
76,228 KB
testcase_43 AC 107 ms
76,176 KB
testcase_44 AC 895 ms
76,656 KB
testcase_45 AC 157 ms
76,352 KB
testcase_46 AC 562 ms
76,712 KB
testcase_47 AC 68 ms
76,084 KB
testcase_48 AC 327 ms
76,724 KB
testcase_49 AC 295 ms
76,500 KB
testcase_50 AC 67 ms
76,100 KB
testcase_51 AC 68 ms
76,204 KB
testcase_52 AC 97 ms
76,232 KB
testcase_53 AC 533 ms
76,772 KB
testcase_54 AC 309 ms
76,768 KB
testcase_55 AC 319 ms
76,784 KB
testcase_56 AC 339 ms
76,684 KB
testcase_57 AC 57 ms
70,216 KB
testcase_58 AC 135 ms
76,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
#ハミング距離
def hamming(a,b):
    x=bin(a^b)
    d=0
    for i in x[2:]:
        d+=int(i)
    return d

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

#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