結果

問題 No.1576 織姫と彦星
ユーザー lloyzlloyz
提出日時 2021-12-09 23:01:41
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 617 ms / 2,000 ms
コード長 829 bytes
コンパイル時間 135 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-07-17 15:57:35
合計ジャッジ時間 14,948 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,880 KB
testcase_01 AC 33 ms
10,624 KB
testcase_02 AC 34 ms
10,752 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 30 ms
10,880 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 31 ms
10,880 KB
testcase_07 AC 151 ms
10,752 KB
testcase_08 AC 117 ms
10,752 KB
testcase_09 AC 32 ms
10,752 KB
testcase_10 AC 432 ms
10,880 KB
testcase_11 AC 33 ms
10,752 KB
testcase_12 AC 245 ms
10,880 KB
testcase_13 AC 492 ms
11,008 KB
testcase_14 AC 343 ms
10,880 KB
testcase_15 AC 330 ms
10,752 KB
testcase_16 AC 443 ms
10,880 KB
testcase_17 AC 314 ms
10,880 KB
testcase_18 AC 78 ms
10,880 KB
testcase_19 AC 118 ms
10,880 KB
testcase_20 AC 314 ms
10,880 KB
testcase_21 AC 291 ms
10,880 KB
testcase_22 AC 370 ms
11,008 KB
testcase_23 AC 62 ms
10,752 KB
testcase_24 AC 62 ms
10,752 KB
testcase_25 AC 413 ms
10,752 KB
testcase_26 AC 139 ms
11,008 KB
testcase_27 AC 35 ms
10,624 KB
testcase_28 AC 395 ms
10,880 KB
testcase_29 AC 140 ms
10,880 KB
testcase_30 AC 31 ms
10,624 KB
testcase_31 AC 151 ms
10,752 KB
testcase_32 AC 298 ms
11,008 KB
testcase_33 AC 564 ms
10,880 KB
testcase_34 AC 33 ms
10,624 KB
testcase_35 AC 197 ms
11,008 KB
testcase_36 AC 55 ms
10,752 KB
testcase_37 AC 583 ms
11,008 KB
testcase_38 AC 388 ms
10,880 KB
testcase_39 AC 223 ms
10,752 KB
testcase_40 AC 177 ms
10,752 KB
testcase_41 AC 208 ms
10,752 KB
testcase_42 AC 40 ms
10,880 KB
testcase_43 AC 79 ms
10,752 KB
testcase_44 AC 534 ms
11,008 KB
testcase_45 AC 166 ms
11,008 KB
testcase_46 AC 356 ms
10,752 KB
testcase_47 AC 84 ms
10,880 KB
testcase_48 AC 207 ms
10,880 KB
testcase_49 AC 195 ms
11,008 KB
testcase_50 AC 35 ms
10,752 KB
testcase_51 AC 62 ms
10,752 KB
testcase_52 AC 534 ms
10,880 KB
testcase_53 AC 317 ms
10,880 KB
testcase_54 AC 413 ms
10,880 KB
testcase_55 AC 596 ms
11,008 KB
testcase_56 AC 617 ms
10,752 KB
testcase_57 AC 32 ms
10,752 KB
testcase_58 AC 126 ms
10,880 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