結果

問題 No.1577 織姫と彦星2
ユーザー AEnAEn
提出日時 2022-11-22 00:18:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 180 ms / 2,000 ms
コード長 598 bytes
コンパイル時間 358 ms
コンパイル使用メモリ 82,336 KB
実行使用メモリ 94,400 KB
最終ジャッジ日時 2024-09-22 13:23:27
合計ジャッジ時間 8,677 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,872 KB
testcase_01 AC 42 ms
55,208 KB
testcase_02 AC 42 ms
54,492 KB
testcase_03 AC 42 ms
54,292 KB
testcase_04 AC 42 ms
54,320 KB
testcase_05 AC 68 ms
80,592 KB
testcase_06 AC 53 ms
68,796 KB
testcase_07 AC 156 ms
91,012 KB
testcase_08 AC 92 ms
82,292 KB
testcase_09 AC 175 ms
94,384 KB
testcase_10 AC 80 ms
82,276 KB
testcase_11 AC 59 ms
68,620 KB
testcase_12 AC 107 ms
86,168 KB
testcase_13 AC 74 ms
81,612 KB
testcase_14 AC 128 ms
89,576 KB
testcase_15 AC 85 ms
80,572 KB
testcase_16 AC 148 ms
90,512 KB
testcase_17 AC 100 ms
83,952 KB
testcase_18 AC 47 ms
62,424 KB
testcase_19 AC 138 ms
90,344 KB
testcase_20 AC 119 ms
86,460 KB
testcase_21 AC 149 ms
90,324 KB
testcase_22 AC 142 ms
90,308 KB
testcase_23 AC 87 ms
81,452 KB
testcase_24 AC 142 ms
94,240 KB
testcase_25 AC 79 ms
80,496 KB
testcase_26 AC 89 ms
81,384 KB
testcase_27 AC 107 ms
92,028 KB
testcase_28 AC 119 ms
88,968 KB
testcase_29 AC 88 ms
84,864 KB
testcase_30 AC 98 ms
84,996 KB
testcase_31 AC 139 ms
90,964 KB
testcase_32 AC 57 ms
68,060 KB
testcase_33 AC 55 ms
64,728 KB
testcase_34 AC 89 ms
84,156 KB
testcase_35 AC 136 ms
90,256 KB
testcase_36 AC 138 ms
90,544 KB
testcase_37 AC 180 ms
94,284 KB
testcase_38 AC 177 ms
94,376 KB
testcase_39 AC 94 ms
82,108 KB
testcase_40 AC 89 ms
83,208 KB
testcase_41 AC 128 ms
92,524 KB
testcase_42 AC 92 ms
87,068 KB
testcase_43 AC 98 ms
89,016 KB
testcase_44 AC 58 ms
67,580 KB
testcase_45 AC 76 ms
80,072 KB
testcase_46 AC 74 ms
80,704 KB
testcase_47 AC 105 ms
92,708 KB
testcase_48 AC 79 ms
83,064 KB
testcase_49 AC 98 ms
84,088 KB
testcase_50 AC 81 ms
81,288 KB
testcase_51 AC 56 ms
70,956 KB
testcase_52 AC 142 ms
94,400 KB
testcase_53 AC 147 ms
94,296 KB
testcase_54 AC 89 ms
84,896 KB
testcase_55 AC 133 ms
94,276 KB
testcase_56 AC 85 ms
80,832 KB
testcase_57 AC 64 ms
74,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict, deque
N = int(input())
start, end = map(int,input().split())
s = [start]+list(map(int, input().split()))+[end]

d = {s[i]:i for i in range(N+2)}
G = [list() for _ in range(N+2)]
q = deque
for i in range(N+2):
    for j in range(30):
        G[i].append(s[i]^(1<<j))

q = deque()
dis = [-1]*(N+2)
q.append(0)
dis[0] = 0
while q:
    v = q.popleft()
    for nex in G[v]:
        if nex in d:
            nex_id = d[nex]
            if dis[nex_id]==-1:
                dis[nex_id] = dis[v]+1
                q.append(nex_id)
print(-1 if dis[-1]==-1 else dis[-1]-1)
0