結果

問題 No.1577 織姫と彦星2
ユーザー k1832k1832
提出日時 2021-06-19 00:35:06
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 444 ms / 2,000 ms
コード長 777 bytes
コンパイル時間 138 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 20,444 KB
最終ジャッジ日時 2024-06-22 21:54:19
合計ジャッジ時間 9,625 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
11,648 KB
testcase_01 AC 34 ms
11,520 KB
testcase_02 AC 33 ms
11,520 KB
testcase_03 AC 34 ms
11,520 KB
testcase_04 AC 33 ms
11,392 KB
testcase_05 AC 39 ms
13,440 KB
testcase_06 AC 35 ms
12,032 KB
testcase_07 AC 74 ms
17,280 KB
testcase_08 AC 138 ms
14,720 KB
testcase_09 AC 302 ms
19,844 KB
testcase_10 AC 66 ms
13,952 KB
testcase_11 AC 47 ms
12,032 KB
testcase_12 AC 137 ms
16,848 KB
testcase_13 AC 48 ms
13,440 KB
testcase_14 AC 196 ms
17,368 KB
testcase_15 AC 114 ms
13,824 KB
testcase_16 AC 218 ms
19,360 KB
testcase_17 AC 152 ms
16,524 KB
testcase_18 AC 35 ms
11,392 KB
testcase_19 AC 251 ms
19,252 KB
testcase_20 AC 242 ms
19,596 KB
testcase_21 AC 297 ms
19,692 KB
testcase_22 AC 215 ms
19,424 KB
testcase_23 AC 134 ms
14,592 KB
testcase_24 AC 205 ms
18,560 KB
testcase_25 AC 83 ms
13,824 KB
testcase_26 AC 142 ms
14,464 KB
testcase_27 AC 73 ms
17,568 KB
testcase_28 AC 181 ms
17,568 KB
testcase_29 AC 79 ms
15,560 KB
testcase_30 AC 126 ms
16,640 KB
testcase_31 AC 220 ms
19,588 KB
testcase_32 AC 38 ms
11,776 KB
testcase_33 AC 36 ms
11,648 KB
testcase_34 AC 110 ms
16,368 KB
testcase_35 AC 238 ms
19,384 KB
testcase_36 AC 267 ms
19,584 KB
testcase_37 AC 444 ms
20,444 KB
testcase_38 AC 176 ms
18,356 KB
testcase_39 AC 117 ms
14,592 KB
testcase_40 AC 118 ms
14,848 KB
testcase_41 AC 99 ms
17,760 KB
testcase_42 AC 78 ms
17,240 KB
testcase_43 AC 85 ms
17,352 KB
testcase_44 AC 38 ms
11,648 KB
testcase_45 AC 82 ms
13,440 KB
testcase_46 AC 50 ms
13,312 KB
testcase_47 AC 70 ms
18,060 KB
testcase_48 AC 61 ms
14,040 KB
testcase_49 AC 106 ms
16,388 KB
testcase_50 AC 60 ms
13,696 KB
testcase_51 AC 36 ms
12,032 KB
testcase_52 AC 226 ms
19,904 KB
testcase_53 AC 222 ms
18,764 KB
testcase_54 AC 91 ms
16,640 KB
testcase_55 AC 215 ms
18,660 KB
testcase_56 AC 126 ms
13,952 KB
testcase_57 AC 56 ms
12,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import random
import queue
def solve(start, end, stones):
    stone_set = set(stones)
    checked_set = set()
    que = queue.Queue()
    que.put((start, 0))
    while not que.empty():
        current, distance = que.get()
        next_distance = distance + 1
        for i in range(31):
            candidate = current ^ (1<<i)
            if candidate == end:
                return next_distance - 1
            
            if candidate in stone_set and candidate not in checked_set:
                checked_set.add(candidate)
                que.put((candidate, next_distance))
    return -1

if __name__ == '__main__':
    N = int(input())
    start, end = list(map(int, input().split()))
    stones = list(map(int, input().split()))
    print(solve(start, end, stones))
0