結果

問題 No.1576 織姫と彦星
ユーザー hiragnhiragn
提出日時 2022-12-23 02:13:54
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 249 ms / 2,000 ms
コード長 731 bytes
コンパイル時間 252 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-11-18 03:52:09
合計ジャッジ時間 7,671 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,624 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 24 ms
10,880 KB
testcase_03 AC 25 ms
10,752 KB
testcase_04 AC 24 ms
10,624 KB
testcase_05 AC 24 ms
10,752 KB
testcase_06 AC 26 ms
10,752 KB
testcase_07 AC 73 ms
10,624 KB
testcase_08 AC 71 ms
10,880 KB
testcase_09 AC 29 ms
10,880 KB
testcase_10 AC 194 ms
10,880 KB
testcase_11 AC 27 ms
10,624 KB
testcase_12 AC 114 ms
10,880 KB
testcase_13 AC 212 ms
10,752 KB
testcase_14 AC 141 ms
10,880 KB
testcase_15 AC 141 ms
10,752 KB
testcase_16 AC 186 ms
11,008 KB
testcase_17 AC 168 ms
11,008 KB
testcase_18 AC 41 ms
10,752 KB
testcase_19 AC 56 ms
10,752 KB
testcase_20 AC 146 ms
10,880 KB
testcase_21 AC 130 ms
11,008 KB
testcase_22 AC 164 ms
10,752 KB
testcase_23 AC 36 ms
10,752 KB
testcase_24 AC 35 ms
10,752 KB
testcase_25 AC 184 ms
10,752 KB
testcase_26 AC 65 ms
10,880 KB
testcase_27 AC 26 ms
10,752 KB
testcase_28 AC 166 ms
11,008 KB
testcase_29 AC 64 ms
10,752 KB
testcase_30 AC 24 ms
10,752 KB
testcase_31 AC 73 ms
10,880 KB
testcase_32 AC 135 ms
10,752 KB
testcase_33 AC 232 ms
11,008 KB
testcase_34 AC 26 ms
10,752 KB
testcase_35 AC 85 ms
10,880 KB
testcase_36 AC 33 ms
10,752 KB
testcase_37 AC 249 ms
11,136 KB
testcase_38 AC 164 ms
10,880 KB
testcase_39 AC 100 ms
10,880 KB
testcase_40 AC 78 ms
10,880 KB
testcase_41 AC 89 ms
11,008 KB
testcase_42 AC 26 ms
10,752 KB
testcase_43 AC 41 ms
10,624 KB
testcase_44 AC 223 ms
10,880 KB
testcase_45 AC 76 ms
10,880 KB
testcase_46 AC 149 ms
10,752 KB
testcase_47 AC 45 ms
10,624 KB
testcase_48 AC 94 ms
10,880 KB
testcase_49 AC 96 ms
10,752 KB
testcase_50 AC 26 ms
10,752 KB
testcase_51 AC 36 ms
10,752 KB
testcase_52 AC 235 ms
10,880 KB
testcase_53 AC 145 ms
10,752 KB
testcase_54 AC 179 ms
11,008 KB
testcase_55 AC 227 ms
10,880 KB
testcase_56 AC 247 ms
10,752 KB
testcase_57 AC 24 ms
10,624 KB
testcase_58 AC 62 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict, deque
from itertools import combinations


def main():
    _ = int(input())
    st, gl = map(int, input().split())
    a = [st] + list(map(int, input().split())) + [gl]

    edge = defaultdict(list)
    for u, v in combinations(a, 2):
        if bin(u ^ v).count('1') == 1:
            edge[u].append(v)
            edge[v].append(u)

    q = deque()
    q.append(st)
    dist = defaultdict(lambda: -1)
    dist[st] = 0
    while q:
        v = q.popleft()
        for i in edge[v]:
            if i == gl:
                exit(print(dist[v]))
            if dist[i] == -1:
                dist[i] = dist[v] + 1
                q.append(i)
    print(-1)


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