結果

問題 No.1577 織姫と彦星2
ユーザー kept1994kept1994
提出日時 2022-03-19 16:16:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 182 ms / 2,000 ms
コード長 1,349 bytes
コンパイル時間 326 ms
コンパイル使用メモリ 82,132 KB
実行使用メモリ 97,720 KB
最終ジャッジ日時 2024-10-04 18:29:24
合計ジャッジ時間 8,188 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
67,400 KB
testcase_01 AC 54 ms
68,264 KB
testcase_02 AC 54 ms
68,700 KB
testcase_03 AC 53 ms
67,248 KB
testcase_04 AC 53 ms
68,012 KB
testcase_05 AC 77 ms
80,108 KB
testcase_06 AC 62 ms
75,084 KB
testcase_07 AC 157 ms
88,760 KB
testcase_08 AC 96 ms
81,256 KB
testcase_09 AC 182 ms
97,720 KB
testcase_10 AC 91 ms
81,936 KB
testcase_11 AC 77 ms
78,940 KB
testcase_12 AC 115 ms
85,200 KB
testcase_13 AC 88 ms
80,768 KB
testcase_14 AC 128 ms
86,980 KB
testcase_15 AC 96 ms
79,904 KB
testcase_16 AC 152 ms
88,432 KB
testcase_17 AC 113 ms
83,276 KB
testcase_18 AC 59 ms
69,232 KB
testcase_19 AC 136 ms
87,204 KB
testcase_20 AC 124 ms
85,548 KB
testcase_21 AC 145 ms
88,676 KB
testcase_22 AC 144 ms
88,528 KB
testcase_23 AC 100 ms
80,520 KB
testcase_24 AC 151 ms
93,132 KB
testcase_25 AC 88 ms
80,028 KB
testcase_26 AC 96 ms
80,536 KB
testcase_27 AC 136 ms
89,844 KB
testcase_28 AC 123 ms
86,180 KB
testcase_29 AC 100 ms
84,100 KB
testcase_30 AC 115 ms
84,456 KB
testcase_31 AC 145 ms
89,116 KB
testcase_32 AC 63 ms
74,952 KB
testcase_33 AC 59 ms
72,152 KB
testcase_34 AC 102 ms
83,032 KB
testcase_35 AC 138 ms
87,432 KB
testcase_36 AC 141 ms
88,344 KB
testcase_37 AC 172 ms
96,808 KB
testcase_38 AC 173 ms
97,240 KB
testcase_39 AC 100 ms
81,380 KB
testcase_40 AC 105 ms
82,628 KB
testcase_41 AC 143 ms
91,252 KB
testcase_42 AC 113 ms
86,160 KB
testcase_43 AC 116 ms
86,240 KB
testcase_44 AC 64 ms
73,652 KB
testcase_45 AC 88 ms
79,776 KB
testcase_46 AC 85 ms
80,096 KB
testcase_47 AC 128 ms
91,280 KB
testcase_48 AC 97 ms
82,612 KB
testcase_49 AC 110 ms
83,324 KB
testcase_50 AC 94 ms
80,688 KB
testcase_51 AC 68 ms
75,664 KB
testcase_52 AC 151 ms
93,212 KB
testcase_53 AC 154 ms
93,044 KB
testcase_54 AC 105 ms
84,296 KB
testcase_55 AC 143 ms
92,964 KB
testcase_56 AC 90 ms
80,232 KB
testcase_57 AC 84 ms
79,532 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 compressed:
                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