結果

問題 No.1588 Connection
ユーザー shotoyooshotoyoo
提出日時 2021-07-08 22:39:37
言語 PyPy3
(7.3.15)
結果
WA  
(最新)
QLE  
(最初)
実行時間 -
コード長 1,658 bytes
コンパイル時間 263 ms
コンパイル使用メモリ 86,888 KB
実行使用メモリ 95,268 KB
平均クエリ数 421.59
最終ジャッジ日時 2023-09-24 10:46:49
合計ジャッジ時間 6,045 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
86,872 KB
testcase_01 WA -
testcase_02 AC 95 ms
87,156 KB
testcase_03 AC 95 ms
87,280 KB
testcase_04 AC 98 ms
86,976 KB
testcase_05 AC 95 ms
87,552 KB
testcase_06 AC 97 ms
87,636 KB
testcase_07 AC 96 ms
86,952 KB
testcase_08 AC 98 ms
87,684 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 96 ms
87,044 KB
testcase_15 AC 98 ms
86,908 KB
testcase_16 AC 96 ms
87,292 KB
testcase_17 AC 97 ms
87,004 KB
testcase_18 AC 96 ms
87,084 KB
testcase_19 AC 98 ms
87,240 KB
testcase_20 AC 98 ms
87,056 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 165 ms
92,332 KB
testcase_26 AC 165 ms
92,200 KB
testcase_27 AC 125 ms
91,104 KB
testcase_28 AC 114 ms
87,336 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda : sys.stdin.readline().rstrip()

sys.setrecursionlimit(2*10**5+10)
write = lambda x: sys.stdout.write(x+"\n")
debug = lambda x: sys.stderr.write(x+"\n")
writef = lambda x: print("{:.12f}".format(x))


def answer(i, val):
    write(val)
    sys.stdout.flush()
    # write(f"Case #{i+1}: {val}")
# 標準出力による質問 interactive
import sys
# _l = [2,4,3,1,5,7,6]
# ans = list(range(len(_l)))
# ans.sort(key=lambda i: _l[i])
# ans = [ans[i] for i in range(len(ans))]
# def q(i,j,k):
#     v = sorted([i,j,k], key=lambda i: _l[i])
#     return v[1]
def query(x,y):
    print(x+1,y+1)
    sys.stdout.flush()
    res = input()
    if res=="Black":
        return 1
    elif res=="White":
        return 0
    assert 0
def sub(x,y):
    if x==y==n-1:
        return 1
    if done[x][y]:
        return 0
    res = query(x,y)
    if res:
        q.append((x,y))
    done[x][y] = 1
    return 1
if __name__=="__main__":
    count = 0
    val = input()
    n,m = map(int, val.split())
    done = [[0]*n for _ in range(n)]
    q = [(0,0)]
    done[0][0] = 1
    M = 2996
    while q:
        x,y = q.pop()
        if x==y==n-1:
            print("Yes")
            break
        if x+1<n:
            count += sub(x+1,y)
            if count>=M:
                break
        if x-1>=0:
            count += sub(x-1,y)
            if count>=M:
                break
        if y+1<n:
            count += sub(x,y+1)
            if count>=M:
                break
        if y-1>=n:
            count += sub(x,y-1)
            if count>=M:
                break
    if (n-1,n-1) in q:
        print("Yes")
    else:
        print("No")
0