結果

問題 No.1577 織姫と彦星2
ユーザー gorugo30gorugo30
提出日時 2021-06-29 14:43:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 210 ms / 2,000 ms
コード長 713 bytes
コンパイル時間 357 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 94,708 KB
最終ジャッジ日時 2024-06-25 17:32:15
合計ジャッジ時間 8,558 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,144 KB
testcase_01 AC 44 ms
53,888 KB
testcase_02 AC 43 ms
53,760 KB
testcase_03 AC 43 ms
53,888 KB
testcase_04 AC 42 ms
53,504 KB
testcase_05 AC 72 ms
69,632 KB
testcase_06 AC 56 ms
64,640 KB
testcase_07 AC 172 ms
90,112 KB
testcase_08 AC 101 ms
80,768 KB
testcase_09 AC 187 ms
94,708 KB
testcase_10 AC 92 ms
76,288 KB
testcase_11 AC 66 ms
68,480 KB
testcase_12 AC 125 ms
85,252 KB
testcase_13 AC 82 ms
74,496 KB
testcase_14 AC 143 ms
87,936 KB
testcase_15 AC 84 ms
75,908 KB
testcase_16 AC 168 ms
90,112 KB
testcase_17 AC 114 ms
82,944 KB
testcase_18 AC 51 ms
61,312 KB
testcase_19 AC 148 ms
88,192 KB
testcase_20 AC 132 ms
86,196 KB
testcase_21 AC 160 ms
89,984 KB
testcase_22 AC 158 ms
89,820 KB
testcase_23 AC 101 ms
80,256 KB
testcase_24 AC 165 ms
94,208 KB
testcase_25 AC 85 ms
73,344 KB
testcase_26 AC 105 ms
80,000 KB
testcase_27 AC 154 ms
90,344 KB
testcase_28 AC 136 ms
86,656 KB
testcase_29 AC 100 ms
79,488 KB
testcase_30 AC 114 ms
83,928 KB
testcase_31 AC 210 ms
90,112 KB
testcase_32 AC 61 ms
66,176 KB
testcase_33 AC 58 ms
64,640 KB
testcase_34 AC 99 ms
78,848 KB
testcase_35 AC 149 ms
88,448 KB
testcase_36 AC 153 ms
89,768 KB
testcase_37 AC 172 ms
94,348 KB
testcase_38 AC 177 ms
94,548 KB
testcase_39 AC 99 ms
80,896 KB
testcase_40 AC 93 ms
78,080 KB
testcase_41 AC 156 ms
92,136 KB
testcase_42 AC 123 ms
85,760 KB
testcase_43 AC 125 ms
85,904 KB
testcase_44 AC 60 ms
65,920 KB
testcase_45 AC 80 ms
73,344 KB
testcase_46 AC 75 ms
72,832 KB
testcase_47 AC 133 ms
91,508 KB
testcase_48 AC 89 ms
76,672 KB
testcase_49 AC 111 ms
82,724 KB
testcase_50 AC 85 ms
75,648 KB
testcase_51 AC 59 ms
65,920 KB
testcase_52 AC 164 ms
94,504 KB
testcase_53 AC 164 ms
94,208 KB
testcase_54 AC 111 ms
83,584 KB
testcase_55 AC 163 ms
94,080 KB
testcase_56 AC 83 ms
75,008 KB
testcase_57 AC 73 ms
71,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

p2 = [1]
while p2[-1] * 2 <= 10 ** 9:
    p2.append(p2[-1] * 2)
N = int(input())
st, en = map(int, input().split())
S = [st] + list(map(int, input().split())) + [en]

dic = {S[i]: i for i in range(N + 2)}
adj = [[] for i in range(N + 2)]
for i in range(N + 2):
    for j in range(len(p2)):
        if S[i] ^ p2[j] in dic.keys():
            adj[i].append(dic[S[i] ^ p2[j]])
        if S[i] ^ p2[j] in dic.keys():
            adj[i].append(dic[S[i] ^ p2[j]])

from collections import deque
qu = deque([0])
dist = [-1] * (N + 2)
dist[0] = 0
while len(qu):
    v = qu.popleft()
    for nv in adj[v]:
        if dist[nv] == -1:
            dist[nv] = dist[v] + 1
            qu.append(nv)
print(max(-1, dist[-1] - 1))
0