結果

問題 No.1576 織姫と彦星
ユーザー ああいいああいい
提出日時 2021-12-23 19:17:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 239 ms / 2,000 ms
コード長 743 bytes
コンパイル時間 204 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 76,856 KB
最終ジャッジ日時 2024-09-17 17:50:07
合計ジャッジ時間 8,463 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
53,632 KB
testcase_01 AC 43 ms
53,760 KB
testcase_02 AC 43 ms
53,376 KB
testcase_03 AC 43 ms
53,888 KB
testcase_04 AC 41 ms
53,760 KB
testcase_05 AC 47 ms
59,776 KB
testcase_06 AC 48 ms
60,672 KB
testcase_07 AC 97 ms
76,016 KB
testcase_08 AC 86 ms
76,032 KB
testcase_09 AC 54 ms
64,128 KB
testcase_10 AC 170 ms
76,544 KB
testcase_11 AC 57 ms
66,432 KB
testcase_12 AC 122 ms
76,100 KB
testcase_13 AC 204 ms
76,288 KB
testcase_14 AC 141 ms
76,160 KB
testcase_15 AC 142 ms
76,096 KB
testcase_16 AC 177 ms
75,904 KB
testcase_17 AC 150 ms
75,904 KB
testcase_18 AC 76 ms
76,160 KB
testcase_19 AC 90 ms
76,160 KB
testcase_20 AC 151 ms
76,160 KB
testcase_21 AC 142 ms
76,032 KB
testcase_22 AC 164 ms
76,128 KB
testcase_23 AC 72 ms
76,032 KB
testcase_24 AC 72 ms
76,160 KB
testcase_25 AC 173 ms
76,288 KB
testcase_26 AC 93 ms
76,352 KB
testcase_27 AC 58 ms
67,072 KB
testcase_28 AC 173 ms
76,340 KB
testcase_29 AC 95 ms
76,416 KB
testcase_30 AC 49 ms
61,440 KB
testcase_31 AC 96 ms
76,032 KB
testcase_32 AC 136 ms
76,216 KB
testcase_33 AC 220 ms
76,032 KB
testcase_34 AC 58 ms
66,176 KB
testcase_35 AC 109 ms
76,160 KB
testcase_36 AC 68 ms
75,768 KB
testcase_37 AC 217 ms
76,616 KB
testcase_38 AC 155 ms
76,104 KB
testcase_39 AC 119 ms
75,904 KB
testcase_40 AC 105 ms
76,164 KB
testcase_41 AC 111 ms
76,044 KB
testcase_42 AC 60 ms
67,968 KB
testcase_43 AC 76 ms
75,904 KB
testcase_44 AC 203 ms
76,268 KB
testcase_45 AC 99 ms
76,032 KB
testcase_46 AC 226 ms
76,424 KB
testcase_47 AC 77 ms
76,160 KB
testcase_48 AC 112 ms
76,032 KB
testcase_49 AC 116 ms
75,904 KB
testcase_50 AC 57 ms
66,304 KB
testcase_51 AC 70 ms
75,904 KB
testcase_52 AC 198 ms
76,032 KB
testcase_53 AC 149 ms
76,856 KB
testcase_54 AC 168 ms
76,416 KB
testcase_55 AC 211 ms
75,904 KB
testcase_56 AC 239 ms
75,904 KB
testcase_57 AC 53 ms
63,872 KB
testcase_58 AC 88 ms
76,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
s,e = map(int,input().split())
l = list(map(int,input().split()))
l.insert(0,s)
l.append(e)
C = 10 ** 5
memo = [C] * (N + 2)
memo[0] = 0

def hamu(a,b):
    count = 0
    while a != 0 or b != 0:
        if a & 1 != b & 1:
            count += 1
        a >>= 1
        b >>= 1
    return count < 2
G = [[] for _ in range(N + 2)]
for i in range(N+1):
    for j in range(i + 1,N + 2):
        if hamu(l[i],l[j]):
            G[i].append(j)
            G[j].append(i)
    
from collections import deque
q = deque()
q.append(0)
while len(q):
    now = q.popleft()
    for v in G[now]:
        if memo[v] == C:
            memo[v] = memo[now] + 1
            q.append(v)
if memo[-1] == C:
    print(-1)
else:
    print(memo[-1]-1)
0