結果

問題 No.1588 Connection
ユーザー shakayamishakayami
提出日時 2021-07-08 23:27:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 246 ms / 2,000 ms
コード長 905 bytes
コンパイル時間 276 ms
コンパイル使用メモリ 82,528 KB
実行使用メモリ 98,536 KB
平均クエリ数 563.00
最終ジャッジ日時 2024-07-17 12:34:14
合計ジャッジ時間 5,878 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
70,668 KB
testcase_01 AC 65 ms
72,120 KB
testcase_02 AC 63 ms
72,400 KB
testcase_03 AC 63 ms
71,452 KB
testcase_04 AC 66 ms
71,340 KB
testcase_05 AC 63 ms
69,888 KB
testcase_06 AC 67 ms
72,312 KB
testcase_07 AC 64 ms
71,180 KB
testcase_08 AC 69 ms
71,256 KB
testcase_09 AC 70 ms
71,904 KB
testcase_10 AC 70 ms
73,368 KB
testcase_11 AC 70 ms
71,728 KB
testcase_12 AC 136 ms
88,724 KB
testcase_13 AC 164 ms
93,556 KB
testcase_14 AC 69 ms
77,344 KB
testcase_15 AC 69 ms
77,632 KB
testcase_16 AC 67 ms
76,736 KB
testcase_17 AC 67 ms
77,856 KB
testcase_18 AC 68 ms
76,468 KB
testcase_19 AC 68 ms
78,056 KB
testcase_20 AC 73 ms
81,844 KB
testcase_21 AC 243 ms
98,324 KB
testcase_22 AC 243 ms
98,536 KB
testcase_23 AC 142 ms
89,496 KB
testcase_24 AC 104 ms
82,308 KB
testcase_25 AC 181 ms
98,408 KB
testcase_26 AC 173 ms
96,804 KB
testcase_27 AC 105 ms
83,984 KB
testcase_28 AC 92 ms
80,060 KB
testcase_29 AC 246 ms
94,232 KB
testcase_30 AC 239 ms
93,700 KB
testcase_31 AC 63 ms
72,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
N,M=map(int,input().split())
dist=[[-1 for j in range(N)]for i in range(N)]
color=[[None for j in range(N)]for i in range(N)]
color[0][0]=1
def reachable(i,j):
    if color[i][j]==0:
        return False
    elif color[i][j]==1:
        return True
    else:
        print("{0} {1}".format(i+1,j+1),flush=True)
        T=input()
        if T=="Black":
            color[i][j]=1
            return True
        elif T=="White":
            color[i][j]=0
            return False
q=deque([(0,0)])
dist[0][0]=0
dx=[0,1,0,-1]
dy=[1,0,-1,0]
while(q):
    x,y=q.popleft()
    for k in range(4):
        nx=x+dx[k]
        ny=y+dy[k]
        if 0<=nx<N and 0<=ny<N:
            if dist[nx][ny]==-1:
                if reachable(nx,ny):
                    dist[nx][ny]=dist[x][y]+1
                    q.append((nx,ny))
if dist[N-1][N-1]==-1:
    print("No")
else:
    print("Yes")
0