結果

問題 No.1588 Connection
ユーザー 👑 KazunKazun
提出日時 2021-07-08 23:18:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 249 ms / 2,000 ms
コード長 1,145 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 82,516 KB
実行使用メモリ 95,972 KB
平均クエリ数 481.78
最終ジャッジ日時 2024-07-17 12:31:10
合計ジャッジ時間 5,271 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
72,152 KB
testcase_01 AC 62 ms
71,284 KB
testcase_02 AC 62 ms
71,952 KB
testcase_03 AC 64 ms
70,288 KB
testcase_04 AC 64 ms
70,944 KB
testcase_05 AC 63 ms
71,392 KB
testcase_06 AC 65 ms
72,272 KB
testcase_07 AC 63 ms
70,480 KB
testcase_08 AC 67 ms
71,956 KB
testcase_09 AC 69 ms
72,236 KB
testcase_10 AC 70 ms
71,756 KB
testcase_11 AC 70 ms
72,732 KB
testcase_12 AC 157 ms
93,656 KB
testcase_13 AC 177 ms
93,448 KB
testcase_14 AC 63 ms
71,784 KB
testcase_15 AC 66 ms
71,588 KB
testcase_16 AC 63 ms
70,156 KB
testcase_17 AC 63 ms
72,040 KB
testcase_18 AC 64 ms
72,672 KB
testcase_19 AC 63 ms
71,712 KB
testcase_20 AC 66 ms
76,128 KB
testcase_21 AC 197 ms
95,804 KB
testcase_22 AC 225 ms
95,972 KB
testcase_23 AC 154 ms
94,136 KB
testcase_24 AC 106 ms
83,120 KB
testcase_25 AC 149 ms
95,228 KB
testcase_26 AC 153 ms
95,404 KB
testcase_27 AC 101 ms
82,132 KB
testcase_28 AC 92 ms
80,276 KB
testcase_29 AC 249 ms
93,968 KB
testcase_30 AC 226 ms
93,504 KB
testcase_31 AC 63 ms
71,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def question(a,b):
    print(a,b,flush=True)
    ans=input()

    if ans[0]=="B":
        return 1
    elif ans[0]=="W":
        return 0
    else:
        exit()

def answer(ans):
    exit(print(ans,flush=True))
#=================================================
from collections import deque
N,M=map(int,input().split())

# 自明な否定
if 2*N-1>M:
    answer("No")

X=[[-1]*(N+1) for _ in range(N+1)]
X[1][1]=X[N][N]=1
Remain=M-2

Q=deque([(1,1)])
T=[(1,0),(-1,0),(0,1),(0,-1)]

while Q:
    x,y=Q.popleft()

    if Remain==0:
        break

    for a,b in T:
        p=x+a; q=y+b
        if 1<=p<=N and 1<=q<=N and X[p][q]==-1 and (N-p)+(N-q)<=Remain:
                X[p][q]=quest=question(p,q)

                if quest:
                    if (N-p)+(N-q)==1:
                        break

                    Q.append((p,q))
                    Remain-=1

F=[[0]*(N+1) for _ in range(N+1)]; F[1][1]=1
Q=deque([(1,1)])
while Q:
    x,y=Q.popleft()
    for a,b in T:
        p=x+a; q=y+b
        if 1<=p<=N and 1<=q<=N and X[p][q]==1 and F[p][q]==0:
            F[p][q]=1
            Q.append((p,q))

answer("Yes" if F[N][N] else "No")
0