結果

問題 No.1577 織姫と彦星2
ユーザー 👑 rin204rin204
提出日時 2022-03-23 14:55:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 162 ms / 2,000 ms
コード長 415 bytes
コンパイル時間 401 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 91,776 KB
最終ジャッジ日時 2024-10-11 13:10:49
合計ジャッジ時間 7,555 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,504 KB
testcase_01 AC 43 ms
53,632 KB
testcase_02 AC 44 ms
53,888 KB
testcase_03 AC 43 ms
53,632 KB
testcase_04 AC 43 ms
53,504 KB
testcase_05 AC 51 ms
63,488 KB
testcase_06 AC 48 ms
60,672 KB
testcase_07 AC 137 ms
84,352 KB
testcase_08 AC 79 ms
71,808 KB
testcase_09 AC 158 ms
91,776 KB
testcase_10 AC 62 ms
68,736 KB
testcase_11 AC 55 ms
63,232 KB
testcase_12 AC 92 ms
76,288 KB
testcase_13 AC 58 ms
67,456 KB
testcase_14 AC 101 ms
78,748 KB
testcase_15 AC 73 ms
69,376 KB
testcase_16 AC 128 ms
83,456 KB
testcase_17 AC 85 ms
74,240 KB
testcase_18 AC 47 ms
60,160 KB
testcase_19 AC 116 ms
81,408 KB
testcase_20 AC 104 ms
78,336 KB
testcase_21 AC 129 ms
83,200 KB
testcase_22 AC 118 ms
82,048 KB
testcase_23 AC 80 ms
71,552 KB
testcase_24 AC 119 ms
85,888 KB
testcase_25 AC 66 ms
67,200 KB
testcase_26 AC 77 ms
71,680 KB
testcase_27 AC 72 ms
77,056 KB
testcase_28 AC 98 ms
77,824 KB
testcase_29 AC 68 ms
71,296 KB
testcase_30 AC 81 ms
73,472 KB
testcase_31 AC 117 ms
82,048 KB
testcase_32 AC 55 ms
63,360 KB
testcase_33 AC 53 ms
62,080 KB
testcase_34 AC 77 ms
71,936 KB
testcase_35 AC 121 ms
81,024 KB
testcase_36 AC 115 ms
81,664 KB
testcase_37 AC 162 ms
91,592 KB
testcase_38 AC 151 ms
89,720 KB
testcase_39 AC 88 ms
72,832 KB
testcase_40 AC 76 ms
71,680 KB
testcase_41 AC 102 ms
82,560 KB
testcase_42 AC 73 ms
72,960 KB
testcase_43 AC 73 ms
73,472 KB
testcase_44 AC 55 ms
63,232 KB
testcase_45 AC 67 ms
66,944 KB
testcase_46 AC 59 ms
66,432 KB
testcase_47 AC 70 ms
77,696 KB
testcase_48 AC 65 ms
68,992 KB
testcase_49 AC 95 ms
74,112 KB
testcase_50 AC 70 ms
69,760 KB
testcase_51 AC 52 ms
62,464 KB
testcase_52 AC 114 ms
85,632 KB
testcase_53 AC 121 ms
86,656 KB
testcase_54 AC 68 ms
71,680 KB
testcase_55 AC 109 ms
84,736 KB
testcase_56 AC 77 ms
69,632 KB
testcase_57 AC 58 ms
65,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

n = int(input())
s, e = map(int, input().split())
stone = set(map(int, input().split()))
stone.add(e)
dist = {s:0}
queue = deque()
queue.append(s)
while queue:
    pos = queue.popleft()
    for i in range(30):
        npos = pos ^ (1 << i)
        if npos not in dist and npos in stone:
            dist[npos] = dist[pos] + 1
            queue.append(npos)

print(dist.get(e, 0) - 1)
0