結果

問題 No.86 TVザッピング(2)
ユーザー titiatitia
提出日時 2022-01-13 03:14:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 896 ms / 5,000 ms
コード長 2,186 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 82,112 KB
実行使用メモリ 90,292 KB
最終ジャッジ日時 2024-12-25 12:54:58
合計ジャッジ時間 5,154 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
54,332 KB
testcase_01 AC 39 ms
53,120 KB
testcase_02 AC 40 ms
53,544 KB
testcase_03 AC 36 ms
54,064 KB
testcase_04 AC 35 ms
52,688 KB
testcase_05 AC 38 ms
53,564 KB
testcase_06 AC 37 ms
52,900 KB
testcase_07 AC 39 ms
53,344 KB
testcase_08 AC 41 ms
59,672 KB
testcase_09 AC 527 ms
85,128 KB
testcase_10 AC 896 ms
90,024 KB
testcase_11 AC 49 ms
63,092 KB
testcase_12 AC 36 ms
53,148 KB
testcase_13 AC 39 ms
54,188 KB
testcase_14 AC 79 ms
75,904 KB
testcase_15 AC 110 ms
77,244 KB
testcase_16 AC 113 ms
76,732 KB
testcase_17 AC 40 ms
53,836 KB
testcase_18 AC 57 ms
66,816 KB
testcase_19 AC 49 ms
63,160 KB
testcase_20 AC 45 ms
61,176 KB
testcase_21 AC 869 ms
90,292 KB
testcase_22 AC 36 ms
52,820 KB
testcase_23 AC 81 ms
75,928 KB
testcase_24 AC 42 ms
59,808 KB
testcase_25 AC 35 ms
52,960 KB
testcase_26 AC 36 ms
52,740 KB
testcase_27 AC 35 ms
52,532 KB
testcase_28 AC 35 ms
54,056 KB
testcase_29 AC 342 ms
82,940 KB
testcase_30 AC 36 ms
53,876 KB
testcase_31 AC 37 ms
53,544 KB
testcase_32 AC 36 ms
53,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int,input().split())
MAP=[input() for i in range(N)]

def findmap(x0,y0,di):
    USE=[[0]*M for i in range(N)]

    Q=[(x0,y0,di)]
    while Q:
        x,y,di=Q.pop()
        if USE[x][y]==1:
            if x==x0 and y==y0:
                break
            else:
                return False
            
        USE[x][y]=1

        if di=="R":
            if 0<=x<N and 0<=y+1<M and MAP[x][y+1]==".":
                Q.append((x,y+1,"R"))
            elif 0<=x-1<N and 0<=y<M and MAP[x-1][y]==".":
                Q.append((x-1,y,"U"))
            else:
                return False

        elif di=="L":
            if 0<=x<N and 0<=y-1<M and MAP[x][y-1]==".":
                Q.append((x,y-1,"L"))
            elif 0<=x+1<N and 0<=y<M and MAP[x+1][y]==".":
                Q.append((x+1,y,"D"))
            else:
                return False

        elif di=="U":
            if 0<=x-1<N and 0<=y<M and MAP[x-1][y]==".":
                Q.append((x-1,y,"U"))
            elif 0<=x<N and 0<=y-1<M and MAP[x][y-1]==".":
                Q.append((x,y-1,"L"))
            else:
                return False

        elif di=="D":
            if 0<=x+1<N and 0<=y<M and MAP[x+1][y]==".":
                Q.append((x+1,y,"D"))
            elif 0<=x<N and 0<=y+1<M and MAP[x][y+1]==".":
                Q.append((x,y+1,"R"))
            else:
                return False

    for i in range(N):
        for j in range(M):
            if MAP[i][j]=="." and USE[i][j]==0:
                return False
    return True

for x in range(N):
    for y in range(M):
        if 0<=x+1<N and 0<=y<M and MAP[x+1][y]==".":
            if findmap(x,y,"D")==True:
                print("YES")
                exit()
        if 0<=x-1<N and 0<=y<M and MAP[x-1][y]==".":
            if findmap(x,y,"U")==True:
                print("YES")
                exit()
        if 0<=x<N and 0<=y+1<M and MAP[x][y+1]==".":
            if findmap(x,y,"R")==True:
                print("YES")
                exit()
        if 0<=x<N and 0<=y-1<M and MAP[x][y-1]==".":
            if findmap(x,y,"L")==True:
                print("YES")
                exit()
else:
    print("NO")












        
0