結果
問題 | No.86 TVザッピング(2) |
ユーザー | titia |
提出日時 | 2022-01-13 03:14:14 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 1,012 ms / 5,000 ms |
コード長 | 2,186 bytes |
コンパイル時間 | 270 ms |
コンパイル使用メモリ | 82,688 KB |
実行使用メモリ | 90,240 KB |
最終ジャッジ日時 | 2024-06-07 10:42:01 |
合計ジャッジ時間 | 5,677 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
52,736 KB |
testcase_01 | AC | 38 ms
52,736 KB |
testcase_02 | AC | 38 ms
52,608 KB |
testcase_03 | AC | 38 ms
52,864 KB |
testcase_04 | AC | 39 ms
52,224 KB |
testcase_05 | AC | 38 ms
52,472 KB |
testcase_06 | AC | 38 ms
52,352 KB |
testcase_07 | AC | 39 ms
53,248 KB |
testcase_08 | AC | 44 ms
59,008 KB |
testcase_09 | AC | 568 ms
85,224 KB |
testcase_10 | AC | 1,012 ms
89,888 KB |
testcase_11 | AC | 51 ms
62,208 KB |
testcase_12 | AC | 38 ms
52,352 KB |
testcase_13 | AC | 40 ms
53,120 KB |
testcase_14 | AC | 79 ms
75,776 KB |
testcase_15 | AC | 113 ms
76,896 KB |
testcase_16 | AC | 116 ms
76,672 KB |
testcase_17 | AC | 39 ms
53,632 KB |
testcase_18 | AC | 60 ms
66,688 KB |
testcase_19 | AC | 51 ms
62,208 KB |
testcase_20 | AC | 45 ms
60,120 KB |
testcase_21 | AC | 961 ms
90,240 KB |
testcase_22 | AC | 39 ms
52,864 KB |
testcase_23 | AC | 87 ms
75,776 KB |
testcase_24 | AC | 44 ms
59,648 KB |
testcase_25 | AC | 38 ms
52,352 KB |
testcase_26 | AC | 39 ms
52,352 KB |
testcase_27 | AC | 39 ms
52,352 KB |
testcase_28 | AC | 39 ms
51,968 KB |
testcase_29 | AC | 404 ms
82,696 KB |
testcase_30 | AC | 38 ms
52,352 KB |
testcase_31 | AC | 39 ms
52,864 KB |
testcase_32 | AC | 38 ms
52,736 KB |
ソースコード
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")