結果

問題 No.1588 Connection
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-07-12 17:39:16
言語 PyPy3
(7.3.15)
結果
WA  
(最新)
QLE  
(最初)
実行時間 -
コード長 966 bytes
コンパイル時間 232 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 94,876 KB
平均クエリ数 273.12
最終ジャッジ日時 2024-07-17 13:02:23
合計ジャッジ時間 4,749 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
70,572 KB
testcase_01 WA -
testcase_02 AC 62 ms
70,716 KB
testcase_03 AC 61 ms
70,540 KB
testcase_04 AC 62 ms
70,964 KB
testcase_05 AC 62 ms
71,720 KB
testcase_06 AC 63 ms
70,968 KB
testcase_07 AC 63 ms
71,404 KB
testcase_08 AC 63 ms
71,800 KB
testcase_09 AC 63 ms
70,872 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 67 ms
71,356 KB
testcase_14 AC 62 ms
71,208 KB
testcase_15 AC 63 ms
70,636 KB
testcase_16 AC 64 ms
70,968 KB
testcase_17 AC 63 ms
72,068 KB
testcase_18 AC 63 ms
70,300 KB
testcase_19 AC 62 ms
71,092 KB
testcase_20 AC 65 ms
72,736 KB
testcase_21 AC 175 ms
94,788 KB
testcase_22 AC 173 ms
94,876 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 119 ms
87,276 KB
testcase_26 AC 119 ms
87,080 KB
testcase_27 AC 86 ms
78,216 KB
testcase_28 AC 69 ms
73,004 KB
testcase_29 AC 211 ms
94,096 KB
testcase_30 AC 157 ms
91,368 KB
testcase_31 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

n, m = map(int, input().split())
if n ** 2 - (2 * n - 1) < m: exit(print("No"))
sx, sy = 0, 0
gx, gy = n - 1, n - 1
INF = 10 ** 18

def bfs():
    d = [[-1] * 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:
            exit(print("Yes"))
        for i in range(4):
            nx = p[0] + dx[i]
            ny = p[1] + dy[i]
            if nx == n - 1 and ny == n - 1: exit(print("Yes"))
            if 0 <= nx < n and 0 <= ny < n and d[nx][ny] == -1:
                print(nx + 1, ny + 1)
                res = input()
                if res == "Black":
                    que.append((nx, ny))
                    d[nx][ny] = 0
                    break
                else:
                    d[nx][ny] = 1
    return d[gy][gx]

print("Yes" if bfs() == 0 else "No")
0