結果

問題 No.1588 Connection
ユーザー taiga0629kyoprotaiga0629kyopro
提出日時 2021-07-09 00:24:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 234 ms / 2,000 ms
コード長 683 bytes
コンパイル時間 274 ms
コンパイル使用メモリ 82,188 KB
実行使用メモリ 97,972 KB
平均クエリ数 562.59
最終ジャッジ日時 2024-07-17 12:48:48
合計ジャッジ時間 5,297 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
69,688 KB
testcase_01 AC 60 ms
69,232 KB
testcase_02 AC 59 ms
69,988 KB
testcase_03 AC 59 ms
69,820 KB
testcase_04 AC 59 ms
69,760 KB
testcase_05 AC 60 ms
70,020 KB
testcase_06 AC 61 ms
69,496 KB
testcase_07 AC 60 ms
69,028 KB
testcase_08 AC 64 ms
70,604 KB
testcase_09 AC 65 ms
68,912 KB
testcase_10 AC 65 ms
70,684 KB
testcase_11 AC 66 ms
70,776 KB
testcase_12 AC 138 ms
91,844 KB
testcase_13 AC 165 ms
93,220 KB
testcase_14 AC 59 ms
69,788 KB
testcase_15 AC 61 ms
69,900 KB
testcase_16 AC 59 ms
69,288 KB
testcase_17 AC 58 ms
69,644 KB
testcase_18 AC 60 ms
69,692 KB
testcase_19 AC 61 ms
70,072 KB
testcase_20 AC 62 ms
73,596 KB
testcase_21 AC 224 ms
97,852 KB
testcase_22 AC 225 ms
97,192 KB
testcase_23 AC 142 ms
91,764 KB
testcase_24 AC 102 ms
81,360 KB
testcase_25 AC 167 ms
97,972 KB
testcase_26 AC 167 ms
97,572 KB
testcase_27 AC 95 ms
80,628 KB
testcase_28 AC 85 ms
77,460 KB
testcase_29 AC 234 ms
93,944 KB
testcase_30 AC 217 ms
93,132 KB
testcase_31 AC 58 ms
68,900 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
s=[[-1]*(n+1) for i in range(n+1)]
s[1][1]=1
s[n][n]=1
delta=[(1,0),(-1,0),(0,1),(0,-1)]
from _collections import deque


dp=[[10**18]*(n+1) for i in range(n+1)]
dp[1][1]=0
data=deque([(1,1)])
while data:
    i,j=data.popleft()
    for di,dj in delta:
        if not (1<=i+di<=n and 1<=j+dj<=n):continue
        x=i+di
        y=j+dj
        if s[x][y]==-1:
            print(x,y)
            t=input()
            if t[0]=="B":
                s[x][y]=1
            else:
                s[x][y]=0
        if s[x][y]==1 and dp[x][y]>dp[i][j]+1:
            dp[x][y]=dp[i][j]+1
            data.append((x,y))

print("Yes" if dp[n][n]<10**17 else "No")


0