結果

問題 No.1577 織姫と彦星2
ユーザー kept1994kept1994
提出日時 2022-03-19 15:57:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 261 ms / 2,000 ms
コード長 1,345 bytes
コンパイル時間 413 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 97,488 KB
最終ジャッジ日時 2024-10-04 17:40:40
合計ジャッジ時間 12,437 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
66,816 KB
testcase_01 AC 76 ms
67,200 KB
testcase_02 AC 71 ms
66,816 KB
testcase_03 AC 71 ms
66,816 KB
testcase_04 AC 73 ms
67,200 KB
testcase_05 AC 103 ms
80,128 KB
testcase_06 AC 87 ms
73,856 KB
testcase_07 AC 213 ms
88,832 KB
testcase_08 AC 135 ms
81,152 KB
testcase_09 AC 261 ms
97,488 KB
testcase_10 AC 120 ms
81,768 KB
testcase_11 AC 96 ms
78,784 KB
testcase_12 AC 150 ms
84,960 KB
testcase_13 AC 112 ms
80,512 KB
testcase_14 AC 167 ms
86,784 KB
testcase_15 AC 116 ms
80,256 KB
testcase_16 AC 205 ms
88,704 KB
testcase_17 AC 149 ms
82,944 KB
testcase_18 AC 78 ms
69,400 KB
testcase_19 AC 187 ms
87,060 KB
testcase_20 AC 169 ms
85,248 KB
testcase_21 AC 202 ms
88,576 KB
testcase_22 AC 194 ms
88,800 KB
testcase_23 AC 128 ms
80,684 KB
testcase_24 AC 209 ms
93,052 KB
testcase_25 AC 121 ms
80,068 KB
testcase_26 AC 131 ms
80,256 KB
testcase_27 AC 173 ms
90,180 KB
testcase_28 AC 198 ms
86,072 KB
testcase_29 AC 135 ms
83,712 KB
testcase_30 AC 146 ms
84,320 KB
testcase_31 AC 198 ms
88,704 KB
testcase_32 AC 88 ms
73,216 KB
testcase_33 AC 82 ms
70,912 KB
testcase_34 AC 140 ms
83,072 KB
testcase_35 AC 189 ms
86,912 KB
testcase_36 AC 191 ms
88,576 KB
testcase_37 AC 245 ms
96,456 KB
testcase_38 AC 240 ms
97,156 KB
testcase_39 AC 136 ms
81,036 KB
testcase_40 AC 134 ms
81,920 KB
testcase_41 AC 187 ms
91,264 KB
testcase_42 AC 147 ms
86,060 KB
testcase_43 AC 149 ms
86,228 KB
testcase_44 AC 86 ms
73,472 KB
testcase_45 AC 118 ms
79,464 KB
testcase_46 AC 109 ms
80,116 KB
testcase_47 AC 188 ms
91,520 KB
testcase_48 AC 137 ms
82,304 KB
testcase_49 AC 163 ms
83,296 KB
testcase_50 AC 139 ms
80,568 KB
testcase_51 AC 97 ms
75,380 KB
testcase_52 AC 212 ms
92,672 KB
testcase_53 AC 210 ms
92,944 KB
testcase_54 AC 130 ms
83,840 KB
testcase_55 AC 201 ms
92,672 KB
testcase_56 AC 116 ms
80,080 KB
testcase_57 AC 114 ms
79,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3

from bz2 import compress


def main():
    import math
    from collections import deque
    INF = 10 ** 16
    def bfs(edges: "List[to]", start_node: int) -> list:
        q = deque()
        dist = [INF] * len(edges)
        q.append(start_node)
        dist[start_node] = 0
        while q:
            now = q.popleft()
            for next in edges[now]:
                if dist[next] != INF:
                    continue
                q.append(next)
                dist[next] = dist[now] + 1
        return dist
    N = int(input())
    st, ed = map(int, input().split())
    stones = [st] + list(map(int, input().split())) + [ed]
    compressed = {}
    compressed_to_row = []
    routes = set(stones)
    for index, val in enumerate(sorted(list(routes))):
        compressed[val] = index
        compressed_to_row.append(val)
    # print(compressed)
    G = [[] for _ in range(N + 2)]
    for i in range(N + 2):
        for b in range(30):
            reachable = stones[i] ^ 1 << b
            if reachable in routes:
                G[compressed[stones[i]]].append(compressed[reachable])
                G[compressed[reachable]].append(compressed[stones[i]])
    d = bfs(G, compressed[st])
    print(d[compressed[ed]] - 1 if d[compressed[ed]] != INF else -1)
    return

if __name__ == '__main__':
    main()
0