結果

問題 No.1576 織姫と彦星
ユーザー kept1994kept1994
提出日時 2022-03-19 15:40:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 73 ms / 2,000 ms
コード長 1,001 bytes
コンパイル時間 221 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 64,936 KB
最終ジャッジ日時 2024-10-04 17:01:26
合計ジャッジ時間 6,332 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
54,404 KB
testcase_01 AC 40 ms
54,472 KB
testcase_02 AC 44 ms
55,332 KB
testcase_03 AC 42 ms
54,700 KB
testcase_04 AC 41 ms
55,064 KB
testcase_05 AC 40 ms
54,548 KB
testcase_06 AC 40 ms
54,684 KB
testcase_07 AC 54 ms
62,016 KB
testcase_08 AC 49 ms
62,372 KB
testcase_09 AC 44 ms
60,728 KB
testcase_10 AC 63 ms
63,396 KB
testcase_11 AC 44 ms
61,624 KB
testcase_12 AC 56 ms
62,812 KB
testcase_13 AC 68 ms
62,584 KB
testcase_14 AC 60 ms
63,724 KB
testcase_15 AC 64 ms
64,308 KB
testcase_16 AC 65 ms
62,192 KB
testcase_17 AC 60 ms
62,476 KB
testcase_18 AC 49 ms
62,576 KB
testcase_19 AC 54 ms
63,056 KB
testcase_20 AC 60 ms
62,300 KB
testcase_21 AC 58 ms
63,160 KB
testcase_22 AC 60 ms
63,164 KB
testcase_23 AC 46 ms
62,112 KB
testcase_24 AC 52 ms
63,068 KB
testcase_25 AC 66 ms
63,684 KB
testcase_26 AC 53 ms
64,232 KB
testcase_27 AC 46 ms
60,980 KB
testcase_28 AC 64 ms
63,108 KB
testcase_29 AC 53 ms
62,612 KB
testcase_30 AC 41 ms
54,740 KB
testcase_31 AC 54 ms
63,220 KB
testcase_32 AC 60 ms
63,528 KB
testcase_33 AC 73 ms
64,480 KB
testcase_34 AC 43 ms
60,736 KB
testcase_35 AC 51 ms
62,808 KB
testcase_36 AC 43 ms
62,020 KB
testcase_37 AC 70 ms
64,216 KB
testcase_38 AC 63 ms
64,288 KB
testcase_39 AC 53 ms
64,152 KB
testcase_40 AC 51 ms
62,544 KB
testcase_41 AC 54 ms
62,512 KB
testcase_42 AC 42 ms
61,464 KB
testcase_43 AC 47 ms
61,912 KB
testcase_44 AC 69 ms
64,936 KB
testcase_45 AC 52 ms
62,344 KB
testcase_46 AC 71 ms
64,484 KB
testcase_47 AC 50 ms
62,044 KB
testcase_48 AC 56 ms
64,352 KB
testcase_49 AC 55 ms
62,852 KB
testcase_50 AC 46 ms
62,196 KB
testcase_51 AC 48 ms
61,604 KB
testcase_52 AC 66 ms
63,000 KB
testcase_53 AC 58 ms
64,084 KB
testcase_54 AC 61 ms
62,480 KB
testcase_55 AC 68 ms
64,748 KB
testcase_56 AC 69 ms
63,608 KB
testcase_57 AC 43 ms
61,576 KB
testcase_58 AC 48 ms
61,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3

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]
    G = [[] for _ in range(N + 2)]
    for i in range(N + 1):
        for j in range(i + 1, N + 2):
            w = stones[i] ^ stones[j]
            if w == 0 or math.log2(w).is_integer():
                G[i].append(j)
                G[j].append(i)
    d = bfs(G, 0)
    print(d[-1] - 1 if d[-1] != INF else -1)
    return

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