結果

問題 No.1576 織姫と彦星
ユーザー lloyzlloyz
提出日時 2021-12-09 23:01:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 89 ms / 2,000 ms
コード長 795 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 82,128 KB
実行使用メモリ 69,760 KB
最終ジャッジ日時 2024-07-17 15:56:39
合計ジャッジ時間 5,703 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
53,632 KB
testcase_01 AC 41 ms
53,632 KB
testcase_02 AC 41 ms
53,632 KB
testcase_03 AC 41 ms
53,632 KB
testcase_04 AC 40 ms
53,376 KB
testcase_05 AC 40 ms
53,632 KB
testcase_06 AC 46 ms
61,056 KB
testcase_07 AC 58 ms
64,512 KB
testcase_08 AC 58 ms
64,384 KB
testcase_09 AC 49 ms
61,184 KB
testcase_10 AC 72 ms
66,928 KB
testcase_11 AC 48 ms
61,184 KB
testcase_12 AC 68 ms
67,328 KB
testcase_13 AC 76 ms
66,944 KB
testcase_14 AC 71 ms
67,072 KB
testcase_15 AC 71 ms
66,816 KB
testcase_16 AC 73 ms
67,072 KB
testcase_17 AC 69 ms
66,304 KB
testcase_18 AC 51 ms
62,976 KB
testcase_19 AC 59 ms
65,920 KB
testcase_20 AC 67 ms
65,152 KB
testcase_21 AC 66 ms
65,920 KB
testcase_22 AC 68 ms
65,792 KB
testcase_23 AC 52 ms
62,592 KB
testcase_24 AC 53 ms
63,696 KB
testcase_25 AC 73 ms
66,560 KB
testcase_26 AC 62 ms
65,920 KB
testcase_27 AC 49 ms
61,568 KB
testcase_28 AC 71 ms
66,360 KB
testcase_29 AC 60 ms
65,280 KB
testcase_30 AC 47 ms
61,184 KB
testcase_31 AC 62 ms
65,280 KB
testcase_32 AC 70 ms
66,304 KB
testcase_33 AC 85 ms
68,224 KB
testcase_34 AC 52 ms
62,208 KB
testcase_35 AC 65 ms
65,536 KB
testcase_36 AC 53 ms
62,848 KB
testcase_37 AC 89 ms
69,760 KB
testcase_38 AC 75 ms
67,456 KB
testcase_39 AC 69 ms
67,072 KB
testcase_40 AC 63 ms
65,920 KB
testcase_41 AC 68 ms
67,344 KB
testcase_42 AC 50 ms
62,208 KB
testcase_43 AC 53 ms
63,744 KB
testcase_44 AC 82 ms
68,736 KB
testcase_45 AC 64 ms
64,640 KB
testcase_46 AC 75 ms
68,608 KB
testcase_47 AC 54 ms
64,384 KB
testcase_48 AC 66 ms
65,612 KB
testcase_49 AC 64 ms
66,048 KB
testcase_50 AC 51 ms
61,792 KB
testcase_51 AC 52 ms
63,488 KB
testcase_52 AC 78 ms
66,816 KB
testcase_53 AC 75 ms
68,864 KB
testcase_54 AC 72 ms
66,176 KB
testcase_55 AC 77 ms
66,432 KB
testcase_56 AC 79 ms
66,432 KB
testcase_57 AC 49 ms
61,440 KB
testcase_58 AC 57 ms
64,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict, deque

n = int(input())
s, e = map(int, input().split())
A = list(map(int, input().split()))
A = [s] + A + [e]
nei_dict = defaultdict(list)
for i in range(n + 1):
    for j in range(i + 1, n + 2):
        num = A[i] ^ A[j]
        cnt = 0
        while num != 0:
            if num % 2 == 1:
                cnt += 1
                if cnt == 2:
                    break
            num //= 2
        if cnt == 1:
            nei_dict[i].append(j)
            nei_dict[j].append(i)

seen = set([0])
dq = deque([(0, 1)])
while dq:
    curr, cnt = dq.popleft()
    if curr == n + 1:
        print(cnt - 2)
        exit()
    for np in nei_dict[curr]:
        if np in seen:
            continue
        seen.add(np)
        dq.append((np, cnt + 1))
print(-1)
0