結果

問題 No.1588 Connection
ユーザー zkouzkou
提出日時 2021-07-09 22:35:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 192 ms / 2,000 ms
コード長 947 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 81,984 KB
実行使用メモリ 98,068 KB
平均クエリ数 381.94
最終ジャッジ日時 2024-07-17 12:59:22
合計ジャッジ時間 4,841 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
69,340 KB
testcase_01 AC 59 ms
69,100 KB
testcase_02 AC 59 ms
69,504 KB
testcase_03 AC 58 ms
68,948 KB
testcase_04 AC 58 ms
69,580 KB
testcase_05 AC 63 ms
69,936 KB
testcase_06 AC 61 ms
69,568 KB
testcase_07 AC 59 ms
69,252 KB
testcase_08 AC 63 ms
69,744 KB
testcase_09 AC 60 ms
70,368 KB
testcase_10 AC 60 ms
69,380 KB
testcase_11 AC 60 ms
69,760 KB
testcase_12 AC 63 ms
69,588 KB
testcase_13 AC 90 ms
79,592 KB
testcase_14 AC 61 ms
69,596 KB
testcase_15 AC 61 ms
69,680 KB
testcase_16 AC 59 ms
69,424 KB
testcase_17 AC 60 ms
69,568 KB
testcase_18 AC 60 ms
70,312 KB
testcase_19 AC 60 ms
70,144 KB
testcase_20 AC 64 ms
75,020 KB
testcase_21 AC 192 ms
98,068 KB
testcase_22 AC 187 ms
97,108 KB
testcase_23 AC 109 ms
83,264 KB
testcase_24 AC 81 ms
72,904 KB
testcase_25 AC 175 ms
97,708 KB
testcase_26 AC 166 ms
97,348 KB
testcase_27 AC 96 ms
78,504 KB
testcase_28 AC 84 ms
72,256 KB
testcase_29 AC 188 ms
93,548 KB
testcase_30 AC 183 ms
93,268 KB
testcase_31 AC 58 ms
69,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
flush = sys.stdout.flush

N, M = map(int, input().split())

# Black: 1
# White: 0
# unknown: -1
memo = [[-1] * (N + 2) for _ in range(N + 2)]
for i in range(N + 2):
    memo[i][0] = 0 
    memo[i][-1] = 0 
    memo[0][i] = 0 
    memo[-1][i] = 0 

memo[1][1] = 1
memo[N][N] = 1

def ask(i, j):
    if memo[i][j] != -1:
        return memo[i][j]
    print(f"{i} {j}")
    T = input()
    if T == "Black":
        memo[i][j] = 1
        return 1
    elif T == "White":
        memo[i][j] = 0
        return 0
    else:
        exit(-1)

stack = [(1, 1)]
visited = [[False] * (N + 2) for _ in range(N + 2)]
while stack:
    x, y = stack.pop()
    if ask(x, y) == 0 or visited[x][y]:
        continue
    visited[x][y] = True
    if x == y == N:
        print("Yes")
        exit(0)
    for dx, dy in zip((-1, 0, 1, 0), (0, 1, 0, -1)):
        nx = x + dx
        ny = y + dy
        stack.append((nx, ny))

    # print(stack)

print("No")
0