結果

問題 No.1576 織姫と彦星
ユーザー m tm t
提出日時 2021-07-21 13:04:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 731 bytes
コンパイル時間 274 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 17,952 KB
最終ジャッジ日時 2024-07-17 13:58:28
合計ジャッジ時間 35,530 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
17,952 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 AC 29 ms
10,624 KB
testcase_05 AC 31 ms
10,880 KB
testcase_06 AC 33 ms
10,624 KB
testcase_07 AC 672 ms
10,752 KB
testcase_08 AC 491 ms
10,624 KB
testcase_09 AC 39 ms
10,752 KB
testcase_10 AC 1,949 ms
10,880 KB
testcase_11 AC 44 ms
10,624 KB
testcase_12 AC 1,153 ms
10,752 KB
testcase_13 TLE -
testcase_14 AC 1,547 ms
11,008 KB
testcase_15 AC 1,535 ms
11,008 KB
testcase_16 TLE -
testcase_17 AC 1,563 ms
10,880 KB
testcase_18 AC 244 ms
10,880 KB
testcase_19 AC 458 ms
11,008 KB
testcase_20 AC 1,643 ms
11,008 KB
testcase_21 AC 1,425 ms
10,880 KB
testcase_22 AC 1,874 ms
10,880 KB
testcase_23 AC 193 ms
10,624 KB
testcase_24 AC 184 ms
10,752 KB
testcase_25 TLE -
testcase_26 AC 582 ms
10,880 KB
testcase_27 AC 58 ms
10,880 KB
testcase_28 AC 1,861 ms
10,752 KB
testcase_29 AC 590 ms
10,752 KB
testcase_30 AC 32 ms
10,752 KB
testcase_31 AC 681 ms
10,880 KB
testcase_32 AC 1,481 ms
11,008 KB
testcase_33 TLE -
testcase_34 AC 46 ms
10,624 KB
testcase_35 AC 829 ms
10,880 KB
testcase_36 AC 149 ms
10,880 KB
testcase_37 TLE -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
testcase_53 -- -
testcase_54 -- -
testcase_55 -- -
testcase_56 -- -
testcase_57 -- -
testcase_58 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
def BFS(s,N):
    dist=[False]*N
    que=deque([0])
    dist[0]=0
    while que:
        v=que.popleft()
        for u in graph[v]:
            if not dist[u]:
                dist[u]=dist[v]+1
                que.append(u)
    return dist[-1]

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]
graph=[[] for i in range(n+2)]
for i in range(n+1):
    for j in range(i+1,n+2):
        if hamming(x[i],x[j])==1:
            graph[i].append(j)
            graph[j].append(i)
            
res=BFS(0,n+2)
if not res:
    print(-1)
else:
    print(res-1)
0