結果

問題 No.1588 Connection
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-07-12 17:30:52
言語 PyPy3
(7.3.15)
結果
WA  
(最新)
QLE  
(最初)
実行時間 -
コード長 782 bytes
コンパイル時間 348 ms
コンパイル使用メモリ 87,400 KB
実行使用メモリ 89,668 KB
平均クエリ数 3.00
最終ジャッジ日時 2023-09-24 12:07:03
合計ジャッジ時間 5,966 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
87,432 KB
testcase_01 WA -
testcase_02 AC 117 ms
87,864 KB
testcase_03 AC 116 ms
87,492 KB
testcase_04 AC 115 ms
87,628 KB
testcase_05 AC 115 ms
87,280 KB
testcase_06 AC 116 ms
87,404 KB
testcase_07 AC 116 ms
88,076 KB
testcase_08 AC 120 ms
87,372 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 113 ms
87,884 KB
testcase_15 AC 116 ms
87,328 KB
testcase_16 AC 114 ms
87,536 KB
testcase_17 AC 114 ms
88,092 KB
testcase_18 AC 115 ms
87,856 KB
testcase_19 AC 114 ms
87,448 KB
testcase_20 AC 117 ms
89,280 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 116 ms
88,940 KB
testcase_26 AC 117 ms
89,476 KB
testcase_27 AC 113 ms
87,472 KB
testcase_28 AC 114 ms
88,160 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

n, m = map(int, input().split())
sx, sy = 0, 0
gx, gy = n - 1, n - 1
INF = 10 ** 18

def bfs():
    d = [[INF] * n for i in range(n)]
    dx = [1, 0, -1, 0]
    dy = [0, 1, 0, -1]
 
    que = deque([])
    que.append((sy, sx))
    d[sy][sx] = 0
 
    while que:
        p = que.popleft()
        if p[0] == gy and p[1] == gx:
            break
        for i in range(4):
            nx = p[0] + dx[i]
            ny = p[1] + dy[i]
            if 0 <= nx < n and 0 <= ny < n and d[nx][ny] == INF:
                print(nx + 1, ny + 1)
                res = input()
                if res == "B":
                    que.append((nx, ny))
                    d[nx][ny] = d[p[0]][p[1]] + 1
    return d[gy][gx]

print("Yes" if bfs() <= 10 ** 12 else "No")
0