結果

問題 No.1577 織姫と彦星2
ユーザー titiatitia
提出日時 2024-02-18 02:53:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 482 bytes
コンパイル時間 427 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 94,320 KB
最終ジャッジ日時 2024-09-29 00:02:40
合計ジャッジ時間 6,771 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
54,716 KB
testcase_01 AC 38 ms
53,760 KB
testcase_02 AC 39 ms
54,576 KB
testcase_03 AC 39 ms
53,684 KB
testcase_04 AC 42 ms
53,700 KB
testcase_05 AC 45 ms
64,776 KB
testcase_06 AC 44 ms
61,160 KB
testcase_07 AC 109 ms
86,820 KB
testcase_08 AC 67 ms
74,752 KB
testcase_09 AC 132 ms
94,320 KB
testcase_10 AC 56 ms
70,820 KB
testcase_11 AC 50 ms
63,716 KB
testcase_12 AC 78 ms
79,412 KB
testcase_13 AC 53 ms
68,480 KB
testcase_14 AC 87 ms
81,144 KB
testcase_15 AC 62 ms
70,868 KB
testcase_16 AC 105 ms
85,740 KB
testcase_17 AC 74 ms
77,276 KB
testcase_18 AC 45 ms
60,808 KB
testcase_19 AC 98 ms
83,960 KB
testcase_20 AC 88 ms
80,672 KB
testcase_21 AC 108 ms
85,892 KB
testcase_22 AC 99 ms
84,548 KB
testcase_23 AC 64 ms
72,948 KB
testcase_24 AC 94 ms
88,984 KB
testcase_25 AC 59 ms
68,444 KB
testcase_26 AC 65 ms
73,320 KB
testcase_27 AC 70 ms
81,040 KB
testcase_28 AC 87 ms
80,000 KB
testcase_29 AC 63 ms
73,324 KB
testcase_30 AC 71 ms
75,560 KB
testcase_31 AC 94 ms
84,948 KB
testcase_32 AC 47 ms
63,684 KB
testcase_33 AC 46 ms
62,232 KB
testcase_34 AC 64 ms
73,900 KB
testcase_35 AC 95 ms
84,552 KB
testcase_36 AC 95 ms
84,572 KB
testcase_37 AC 119 ms
93,460 KB
testcase_38 AC 114 ms
93,796 KB
testcase_39 AC 73 ms
75,056 KB
testcase_40 AC 67 ms
73,496 KB
testcase_41 AC 84 ms
86,332 KB
testcase_42 AC 63 ms
76,472 KB
testcase_43 AC 64 ms
76,108 KB
testcase_44 AC 48 ms
63,448 KB
testcase_45 AC 58 ms
68,500 KB
testcase_46 AC 52 ms
67,552 KB
testcase_47 AC 66 ms
81,036 KB
testcase_48 AC 56 ms
70,928 KB
testcase_49 AC 72 ms
75,752 KB
testcase_50 AC 59 ms
70,672 KB
testcase_51 AC 47 ms
62,796 KB
testcase_52 AC 92 ms
89,076 KB
testcase_53 AC 97 ms
89,920 KB
testcase_54 AC 62 ms
74,596 KB
testcase_55 AC 87 ms
88,796 KB
testcase_56 AC 63 ms
71,604 KB
testcase_57 AC 53 ms
66,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

from collections import deque
N=int(input())
start,end=map(int,input().split())
S=list(map(int,input().split()))
S.append(end)
S.append(start)
SET=set(S)

DP=dict()
DP[start]=0
Q=deque([start])

while Q:
    x=Q.popleft()

    for i in range(32):
        y=x^(1<<i)
        if y in SET:
            if not(y in DP):
                DP[y]=DP[x]+1
                Q.append(y)

if end in DP:
    print(DP[end]-1)
else:
    print(-1)
            
0