結果

問題 No.1576 織姫と彦星
ユーザー wgrapewgrape
提出日時 2023-11-01 09:37:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,057 ms / 2,000 ms
コード長 875 bytes
コンパイル時間 274 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 77,696 KB
最終ジャッジ日時 2024-09-25 17:51:43
合計ジャッジ時間 26,197 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
54,016 KB
testcase_01 AC 45 ms
53,888 KB
testcase_02 AC 45 ms
54,016 KB
testcase_03 AC 47 ms
54,016 KB
testcase_04 AC 46 ms
53,888 KB
testcase_05 AC 48 ms
54,656 KB
testcase_06 AC 58 ms
63,616 KB
testcase_07 AC 316 ms
76,800 KB
testcase_08 AC 257 ms
77,056 KB
testcase_09 AC 94 ms
76,544 KB
testcase_10 AC 717 ms
77,696 KB
testcase_11 AC 99 ms
76,672 KB
testcase_12 AC 469 ms
76,928 KB
testcase_13 AC 880 ms
76,928 KB
testcase_14 AC 599 ms
76,928 KB
testcase_15 AC 591 ms
76,928 KB
testcase_16 AC 761 ms
77,056 KB
testcase_17 AC 594 ms
76,928 KB
testcase_18 AC 179 ms
76,800 KB
testcase_19 AC 248 ms
77,184 KB
testcase_20 AC 611 ms
77,056 KB
testcase_21 AC 549 ms
77,056 KB
testcase_22 AC 671 ms
77,184 KB
testcase_23 AC 159 ms
76,928 KB
testcase_24 AC 156 ms
76,800 KB
testcase_25 AC 780 ms
76,800 KB
testcase_26 AC 289 ms
77,184 KB
testcase_27 AC 113 ms
77,056 KB
testcase_28 AC 695 ms
77,056 KB
testcase_29 AC 289 ms
77,056 KB
testcase_30 AC 59 ms
62,720 KB
testcase_31 AC 315 ms
77,056 KB
testcase_32 AC 564 ms
76,800 KB
testcase_33 AC 974 ms
77,568 KB
testcase_34 AC 101 ms
76,800 KB
testcase_35 AC 362 ms
76,928 KB
testcase_36 AC 148 ms
77,056 KB
testcase_37 AC 1,057 ms
76,928 KB
testcase_38 AC 685 ms
76,928 KB
testcase_39 AC 425 ms
76,800 KB
testcase_40 AC 332 ms
77,056 KB
testcase_41 AC 378 ms
76,800 KB
testcase_42 AC 118 ms
77,184 KB
testcase_43 AC 179 ms
76,800 KB
testcase_44 AC 943 ms
77,440 KB
testcase_45 AC 322 ms
77,056 KB
testcase_46 AC 647 ms
77,184 KB
testcase_47 AC 198 ms
77,184 KB
testcase_48 AC 411 ms
76,928 KB
testcase_49 AC 390 ms
77,056 KB
testcase_50 AC 115 ms
76,800 KB
testcase_51 AC 154 ms
76,928 KB
testcase_52 AC 966 ms
76,928 KB
testcase_53 AC 578 ms
77,440 KB
testcase_54 AC 750 ms
77,056 KB
testcase_55 AC 937 ms
76,928 KB
testcase_56 AC 1,028 ms
77,056 KB
testcase_57 AC 83 ms
74,240 KB
testcase_58 AC 269 ms
77,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
s,e = map(int,input().split())
S = [s] + list(map(int,input().split())) + [e]
N += 2

def check(X, Y):
    L = len(bin(max(X,Y))[2:])
    X = bin(X)[2:].zfill(L)
    Y = bin(Y)[2:].zfill(L)
    cnt = 0
    for i in range(L):
        if X[i] != Y[i]:
            cnt += 1
            if cnt > 1:
                return False
    return True

G = [[] for i in range(N)]
for i in range(N - 1):
    for j in range(i + 1, N):
        if check(S[i], S[j]):
            G[i].append(j)
            G[j].append(i)
            
from collections import deque
q = deque([])
q.append([0, 0])
visited = [False] * N
visited[0] = True
while q:
    v, c = q.popleft()
    if v == N - 1:
        print(c - 1)
        break
    for child in G[v]:
        if visited[child]:
            continue
        visited[child] = True
        q.append([child, c + 1])
else:
    print(-1)
0