結果

問題 No.1588 Connection
ユーザー judgelawjudgelaw
提出日時 2021-07-08 23:20:56
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
(最新)
QLE  
(最初)
実行時間 -
コード長 810 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 27,608 KB
平均クエリ数 548.31
最終ジャッジ日時 2024-07-17 12:32:04
合計ジャッジ時間 4,507 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
27,096 KB
testcase_01 WA -
testcase_02 AC 50 ms
27,224 KB
testcase_03 RE -
testcase_04 AC 53 ms
26,968 KB
testcase_05 RE -
testcase_06 AC 55 ms
27,480 KB
testcase_07 RE -
testcase_08 AC 53 ms
27,352 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 93 ms
26,840 KB
testcase_15 AC 132 ms
26,840 KB
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 RE -
testcase_26 AC 136 ms
27,224 KB
testcase_27 RE -
testcase_28 AC 134 ms
26,968 KB
testcase_29 WA -
testcase_30 RE -
testcase_31 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

##制約よりN=500,M=1000の場合最短経路でしか到達不能
##今いるマスの右と下を調べていくだけでよい

N,M=map(int,input().split())

##最短経路で移動しようとしても
##そもそも黒マスが2*N-1個以上なければ到達不能
if 2*N-1>M:
    print("No")
    exit(0)


i,j=1,1
d=[(1,0),(0,1)]
q=deque()

while (i!=N or j!=N) and M>=0:
    for di,dj in d:
        
        print(i+di,i+dj)
        T=input()
        
        ##T==-1なら強制終了(str型?int型?)
        if T==-1 or T=="-1":
            exit(0)

        ##黒ならqに格納
        ##Mを-1する
        elif T=="Black":      
            M-=1
            q.append((i+di,j+dj))
    i,j=q.pop()
if M>=0 and i==N and j==N:
    print("Yes")

else:
    print("No")
0