結果

問題 No.1577 織姫と彦星2
ユーザー rlangevinrlangevin
提出日時 2023-02-04 12:57:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 145 ms / 2,000 ms
コード長 822 bytes
コンパイル時間 268 ms
コンパイル使用メモリ 82,204 KB
実行使用メモリ 95,016 KB
最終ジャッジ日時 2024-07-03 10:52:45
合計ジャッジ時間 7,871 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
54,976 KB
testcase_01 AC 38 ms
54,252 KB
testcase_02 AC 39 ms
54,864 KB
testcase_03 AC 38 ms
53,940 KB
testcase_04 AC 38 ms
54,288 KB
testcase_05 AC 66 ms
72,820 KB
testcase_06 AC 53 ms
65,644 KB
testcase_07 AC 145 ms
90,240 KB
testcase_08 AC 74 ms
76,848 KB
testcase_09 AC 141 ms
95,016 KB
testcase_10 AC 70 ms
76,088 KB
testcase_11 AC 55 ms
67,268 KB
testcase_12 AC 98 ms
86,032 KB
testcase_13 AC 64 ms
74,396 KB
testcase_14 AC 113 ms
88,180 KB
testcase_15 AC 69 ms
74,860 KB
testcase_16 AC 129 ms
90,232 KB
testcase_17 AC 90 ms
83,400 KB
testcase_18 AC 42 ms
61,864 KB
testcase_19 AC 121 ms
89,344 KB
testcase_20 AC 107 ms
86,384 KB
testcase_21 AC 127 ms
90,036 KB
testcase_22 AC 131 ms
90,368 KB
testcase_23 AC 76 ms
76,324 KB
testcase_24 AC 132 ms
94,376 KB
testcase_25 AC 70 ms
74,928 KB
testcase_26 AC 72 ms
76,312 KB
testcase_27 AC 121 ms
91,168 KB
testcase_28 AC 107 ms
86,944 KB
testcase_29 AC 81 ms
79,724 KB
testcase_30 AC 95 ms
84,180 KB
testcase_31 AC 127 ms
89,948 KB
testcase_32 AC 51 ms
65,136 KB
testcase_33 AC 47 ms
63,280 KB
testcase_34 AC 79 ms
78,764 KB
testcase_35 AC 120 ms
89,116 KB
testcase_36 AC 126 ms
90,504 KB
testcase_37 AC 138 ms
94,760 KB
testcase_38 AC 135 ms
94,704 KB
testcase_39 AC 76 ms
77,008 KB
testcase_40 AC 77 ms
77,644 KB
testcase_41 AC 119 ms
92,560 KB
testcase_42 AC 95 ms
82,428 KB
testcase_43 AC 100 ms
86,216 KB
testcase_44 AC 48 ms
66,240 KB
testcase_45 AC 66 ms
73,264 KB
testcase_46 AC 62 ms
73,016 KB
testcase_47 AC 106 ms
92,548 KB
testcase_48 AC 79 ms
76,220 KB
testcase_49 AC 93 ms
83,252 KB
testcase_50 AC 72 ms
75,828 KB
testcase_51 AC 53 ms
67,096 KB
testcase_52 AC 140 ms
94,216 KB
testcase_53 AC 132 ms
94,400 KB
testcase_54 AC 85 ms
80,012 KB
testcase_55 AC 141 ms
93,896 KB
testcase_56 AC 68 ms
75,356 KB
testcase_57 AC 61 ms
70,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque


def bfs(G, s, N):
    Q = deque([])
    dist = [-1] * N
    par = [-1] * N
    dist[s] = 0
    for u in G[s]:
        par[u] = s
        dist[u] = 1
        Q.append(u)

    while Q:
        u = Q.popleft()
        for v in G[u]:
            if dist[v] != -1:
                continue
            dist[v] = dist[u] + 1
            par[v] = u
            Q.append(v)
            
    return dist

N = int(input())
s, g = map(int, input().split())
X = [s] + list(map(int, input().split())) + [g]
D = dict()
N += 2
for i in range(N):
    D[X[i]] = i
    
G = [[] for i in range(N)]
for i in range(N):
    for j in range(35):
        now = X[i] ^ (1 << j)
        if now in D:
            u = D[now]
            G[i].append(u)

DD = bfs(G, 0, N)
print(DD[-1] - 1) if DD[-1] != -1 else print(-1)
0