結果

問題 No.1576 織姫と彦星
ユーザー k1832
提出日時 2021-06-19 00:08:33
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
RE  
実行時間 -
コード長 750 bytes
コンパイル時間 118 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,904 KB
最終ジャッジ日時 2024-06-22 21:54:03
合計ジャッジ時間 3,876 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample RE * 5
other RE * 54
権限があれば一括ダウンロードができます

ソースコード

diff #

import random
import queue
def solve_slower(start, end, stones):
    checked_set = set()
    que = queue.Queue()
    que.put((start, 0))
    while not que.empty():
        current, distance = que.get()
        next_distance = distance + 1
        if get_hd(current, end) == 1:
            return next_distance - 1
        for candidate in stones:
            if candidate in checked_set:
                continue
            if get_hd(current, candidate) == 1:
                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