結果

問題 No.1588 Connection
ユーザー 👑 KazunKazun
提出日時 2021-07-09 00:54:12
言語 PyPy3
(7.3.15)
結果
WA  
(最新)
QLE  
(最初)
実行時間 -
コード長 870 bytes
コンパイル時間 659 ms
コンパイル使用メモリ 81,972 KB
実行使用メモリ 74,448 KB
平均クエリ数 1.00
最終ジャッジ日時 2024-07-17 12:51:22
合計ジャッジ時間 4,100 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
70,772 KB
testcase_01 AC 62 ms
70,712 KB
testcase_02 AC 63 ms
71,644 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 63 ms
70,796 KB
testcase_10 AC 63 ms
72,388 KB
testcase_11 AC 64 ms
71,724 KB
testcase_12 AC 62 ms
71,688 KB
testcase_13 AC 62 ms
71,044 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 64 ms
73,868 KB
testcase_22 AC 65 ms
72,820 KB
testcase_23 AC 64 ms
71,732 KB
testcase_24 AC 63 ms
71,316 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 63 ms
71,776 KB
testcase_30 AC 63 ms
72,208 KB
testcase_31 AC 62 ms
71,964 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

    if X[N][N]!=-1:
        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:
                    Q.append((p,q))
                    Remain-=1

answer("Yes" if X[N][N]==1 else "No")
0