結果

問題 No.1588 Connection
ユーザー qibqib
提出日時 2023-01-22 17:30:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 276 ms / 2,000 ms
コード長 1,075 bytes
コンパイル時間 430 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 98,272 KB
平均クエリ数 551.38
最終ジャッジ日時 2024-06-24 21:42:13
合計ジャッジ時間 6,080 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
70,496 KB
testcase_01 AC 66 ms
70,624 KB
testcase_02 AC 65 ms
70,240 KB
testcase_03 AC 70 ms
70,368 KB
testcase_04 AC 66 ms
70,792 KB
testcase_05 AC 65 ms
70,240 KB
testcase_06 AC 69 ms
70,624 KB
testcase_07 AC 65 ms
71,008 KB
testcase_08 AC 72 ms
71,136 KB
testcase_09 AC 71 ms
71,136 KB
testcase_10 AC 74 ms
71,136 KB
testcase_11 AC 74 ms
71,264 KB
testcase_12 AC 170 ms
93,824 KB
testcase_13 AC 178 ms
93,360 KB
testcase_14 AC 71 ms
76,896 KB
testcase_15 AC 72 ms
76,384 KB
testcase_16 AC 69 ms
75,744 KB
testcase_17 AC 71 ms
76,256 KB
testcase_18 AC 70 ms
76,256 KB
testcase_19 AC 73 ms
77,024 KB
testcase_20 AC 79 ms
81,736 KB
testcase_21 AC 275 ms
98,272 KB
testcase_22 AC 276 ms
98,144 KB
testcase_23 AC 173 ms
95,192 KB
testcase_24 AC 118 ms
83,424 KB
testcase_25 AC 204 ms
97,120 KB
testcase_26 AC 195 ms
97,504 KB
testcase_27 AC 112 ms
82,784 KB
testcase_28 AC 99 ms
80,480 KB
testcase_29 AC 258 ms
93,792 KB
testcase_30 AC 233 ms
94,784 KB
testcase_31 AC 67 ms
70,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
import sys

n, m = map(int, input().split())
dist = [[None for _ in range(n)] for _ in range(n)]
dist[0][0] = 0
used = [[None for _ in range(n)] for _ in range(n)]
used[0][0] = False
used[-1][-1] = False

dx = [1, 0, -1, 0]
dy = [0, 1, 0, -1]

gx, gy = n - 1, n - 1

dq = deque()
dq.append((0, 0))
rest = 3000
while len(dq) > 0:
  cx, cy = dq.popleft()

  for i in range(4):
    nx = cx + dx[i]
    if nx < 0 or nx >= n:
      continue
    ny = cy + dy[i]
    if ny < 0 or ny >= n:
      continue
    if not dist[nx][ny] is None:
      continue
    if used[nx][ny] is None:
      if rest <= 0:
        break

      rest -= 1
      print(*[nx + 1, ny + 1], sep=" ")
      sys.stdout.flush()
      t = input()
      if t == "Black":
        used[nx][ny] = False
      elif t == "White":
        used[nx][ny] = True

    if not used[nx][ny]:
      dist[nx][ny] = dist[cx][cy] + 1
      dq.append((nx, ny))

  if not dist[gx][gy] is None:
    print("Yes")
    sys.stdout.flush()
    exit()
  elif rest <= 0:
    break

print("No")
sys.stdout.flush()
0