結果

問題 No.1588 Connection
ユーザー 👑 rin204
提出日時 2022-01-26 17:33:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 174 ms / 2,000 ms
コード長 807 bytes
コンパイル時間 296 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 96,420 KB
平均クエリ数 344.88
最終ジャッジ日時 2024-12-23 09:41:22
合計ジャッジ時間 4,551 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 31
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10 ** 9)

n, m = map(int, input().split())
directions = [(1, 0), (0, 1), (0, -1), (-1, 0)]
m -= 2
used = [[False] * n for _ in range(n)]
def dfs(i, j):
    global m
    for di, dj in directions:
        ni = i + di
        nj = j + dj
        if ni == -1 or nj == -1 or ni == n or nj == n:
            continue
        if used[ni][nj]:
            continue
        if ni == n - 1 and nj == n - 1:
            print("Yes")
            exit()
        used[ni][nj] = True
        print(ni + 1, nj + 1, flush = True)
        t = input()
        if t == "-1":
            exit()
        elif t == "Black":
            m -= 1
            dfs(ni, nj)
        else:
            pass
    if m == 0:
        print("No")
        exit()
    
    
used[0][0] = True
dfs(0, 0)
print("No")
0